Skip to content

Commit

Permalink
Added missing migration for shape type == Mask (#5376)
Browse files Browse the repository at this point in the history
PR #4543 didn't add a new migration.
The migration wasn't critical. At least it was not led to any problems.
  • Loading branch information
nmanovic committed Nov 30, 2022
1 parent 38193ff commit bfa00b1
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions cvat/apps/engine/migrations/0061_auto_20221130_0844.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by Django 3.2.16 on 2022-11-30 08:44

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('engine', '0060_alter_label_parent'),
]

operations = [
migrations.AlterField(
model_name='labeledshape',
name='type',
field=models.CharField(choices=[('rectangle', 'RECTANGLE'), ('polygon', 'POLYGON'), ('polyline', 'POLYLINE'), ('points', 'POINTS'), ('ellipse', 'ELLIPSE'), ('cuboid', 'CUBOID'), ('mask', 'MASK'), ('skeleton', 'SKELETON')], max_length=16),
),
migrations.AlterField(
model_name='trackedshape',
name='type',
field=models.CharField(choices=[('rectangle', 'RECTANGLE'), ('polygon', 'POLYGON'), ('polyline', 'POLYLINE'), ('points', 'POINTS'), ('ellipse', 'ELLIPSE'), ('cuboid', 'CUBOID'), ('mask', 'MASK'), ('skeleton', 'SKELETON')], max_length=16),
),
]

0 comments on commit bfa00b1

Please sign in to comment.