Bin
2025-12-16 7423b0c6e1959f30a7e8e453e953310f32ce13c6
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",
            ),
        ),
    ]