Bin
2025-12-17 2e6c955be321cefd7e0c4a3031eab805e0a5a303
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Generated by Django 3.1.12 on 2021-06-18 16:53
 
from django.db import migrations, models
 
 
class Migration(migrations.Migration):
 
    dependencies = [
        ('tasks', '0006_remove_annotation_state'),
    ]
 
    operations = [
        migrations.AlterField(
            model_name='annotation',
            name='ground_truth',
            field=models.BooleanField(db_index=True, default=False, help_text='This annotation is a Ground Truth (ground_truth)', verbose_name='ground_truth'),
        ),
        migrations.AlterField(
            model_name='annotation',
            name='was_cancelled',
            field=models.BooleanField(db_index=True, default=False, help_text='User skipped the task', verbose_name='was cancelled'),
        ),
    ]