chenzhaoyang
2025-12-17 063da0bf961e1d35e25dc107f883f7492f4c5a7c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Generated by Django 5.1.4 on 2025-01-14 21:39
 
from django.db import migrations, models
 
 
class Migration(migrations.Migration):
 
    dependencies = [
        ("tasks", "0052_auto_20241030_1757"),
    ]
 
    operations = [
        migrations.AddField(
            model_name="annotation",
            name="bulk_created",
            field=models.BooleanField(
                db_default=False,
                default=False,
                help_text="Annotation was created in bulk mode",
                null=True,
                verbose_name="bulk created",
            ),
        ),
    ]