Skip to content

Commit

Permalink
fix: LEAP-1790: Make migration adding bulk_created field nullable (#6909
Browse files Browse the repository at this point in the history
)
  • Loading branch information
triklozoid authored Jan 14, 2025
1 parent 84658f8 commit 5a497dd
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 5.1.4 on 2025-01-03 19:19
# Generated by Django 5.1.4 on 2025-01-14 21:39

from django.db import migrations, models

@@ -17,6 +17,7 @@ class Migration(migrations.Migration):
db_default=False,
default=False,
help_text="Annotation was created in bulk mode",
null=True,
verbose_name="bulk created",
),
),
1 change: 1 addition & 0 deletions label_studio/tasks/models.py
Original file line number Diff line number Diff line change
@@ -688,6 +688,7 @@ class Annotation(AnnotationMixin, models.Model):
_('bulk created'),
default=False,
db_default=False,
null=True,
help_text='Annotation was created in bulk mode',
)

0 comments on commit 5a497dd

Please sign in to comment.