-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: LEAP-1720: distinguish annotations created using Bulk Labeling
- Loading branch information
1 parent
416eedb
commit 133f704
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
label_studio/tasks/migrations/0053_annotation_bulk_created.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Generated by Django 4.2.16 on 2024-12-23 13:43 | ||
|
||
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( | ||
default=False, | ||
help_text="Annotation was created in bulk mode", | ||
verbose_name="bulk created", | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters