diff --git a/testproj/todo/migrations/0003_pack.py b/testproj/todo/migrations/0003_pack.py new file mode 100644 index 0000000..a169eaa --- /dev/null +++ b/testproj/todo/migrations/0003_pack.py @@ -0,0 +1,21 @@ +# Generated by Django 2.1.5 on 2019-04-01 00:28 + +from decimal import Decimal +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('todo', '0002_todotree'), + ] + + operations = [ + migrations.CreateModel( + name='Pack', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('size_code', models.DecimalField(choices=[(Decimal('50'), '5x10'), (Decimal('100'), '10x10'), (Decimal('200'), '10x20')], decimal_places=3, default=Decimal('200'), max_digits=7)), + ], + ), + ]