zhongrj
2025-11-25 b89962006164a462404b79a738bee8cbb6d7fe7e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Generated by Django 2.0.3 on 2018-12-05 16:44
 
from django.db import migrations, models
 
 
class Migration(migrations.Migration):
 
    dependencies = [
        ('app', '0021_auto_20180726_1746'),
    ]
 
    operations = [
        migrations.RemoveField(
            model_name='task',
            name='ground_control_points',
        ),
        migrations.AddField(
            model_name='task',
            name='resize_progress',
            field=models.FloatField(blank=True, default=0.0, help_text="Value between 0 and 1 indicating the resize progress of this task's images"),
        ),
        migrations.AddField(
            model_name='task',
            name='upload_progress',
            field=models.FloatField(blank=True, default=0.0, help_text="Value between 0 and 1 indicating the upload progress of this task's files to the processing node"),
        ),
    ]