Skip to content

Commit

Permalink
squashed migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
Priya4607 committed Mar 23, 2020
1 parent 98f1fd2 commit 5c170c8
Showing 1 changed file with 40 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Generated by Django 2.2.10 on 2020-03-22 19:38

from django.db import migrations, models


class Migration(migrations.Migration):

replaces = [('engine', '0024_auto_20200225_0657'), ('engine', '0025_auto_20200306_0503'), ('engine', '0026_auto_20200306_0701'), ('engine', '0027_auto_20200306_1029'), ('engine', '0028_auto_20200309_0547'), ('engine', '0029_auto_20200309_0733')]

dependencies = [
('engine', '0023_auto_20200113_1323'),
]

operations = [
migrations.AddField(
model_name='labeledshape',
name='annotation_type',
field=models.CharField(choices=[('Auto', 'AUTO'), ('Manual', 'MANUAL')], default='Manual', max_length=16, null=True),
),
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),
),
migrations.AddField(
model_name='labeledimage',
name='annotation_type',
field=models.CharField(choices=[('Auto', 'AUTO'), ('Manual', 'MANUAL')], default='Manual', max_length=16, null=True),
),
migrations.AddField(
model_name='labeledtrack',
name='annotation_type',
field=models.CharField(choices=[('Auto', 'AUTO'), ('Manual', 'MANUAL')], default='Manual', max_length=16, null=True),
),
]

0 comments on commit 5c170c8

Please sign in to comment.