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.2.19 on 2023-06-28 11:01
|
| from django.db import migrations, models
|
|
| class Migration(migrations.Migration):
|
| dependencies = [
| ('tasks', '0039_annotation_draft_created_at'),
| ]
|
| operations = [
| migrations.AddField(
| model_name='annotation',
| name='import_id',
| field=models.BigIntegerField(blank=True, db_index=True, default=None, help_text="Original annotation ID that was at the import step or NULL if this annotation wasn't imported", null=True),
| ),
| migrations.AddField(
| model_name='annotationdraft',
| name='import_id',
| field=models.BigIntegerField(blank=True, db_index=True, default=None, help_text="Original draft ID that was at the import step or NULL if this draft wasn't imported", null=True),
| ),
| ]
|
|