Add missing migration
parent
4aa14e74dc
commit
0b7c5eaf97
@ -0,0 +1,23 @@
|
||||
# Generated by Django 2.2.13 on 2020-07-19 15:11
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('engine', '0025_auto_20200324_1222'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='labeledshape',
|
||||
name='type',
|
||||
field=models.CharField(choices=[('rectangle', 'RECTANGLE'), ('polygon', 'POLYGON'), ('polyline', 'POLYLINE'), ('points', 'POINTS'), ('cuboid', 'CUBOID')], max_length=16),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='trackedshape',
|
||||
name='type',
|
||||
field=models.CharField(choices=[('rectangle', 'RECTANGLE'), ('polygon', 'POLYGON'), ('polyline', 'POLYLINE'), ('points', 'POINTS'), ('cuboid', 'CUBOID')], max_length=16),
|
||||
),
|
||||
]
|
||||
Loading…
Reference in New Issue