diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/posts/migrations/0010_auto_20200815_1126.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/app/posts/migrations/0010_auto_20200815_1126.py b/app/posts/migrations/0010_auto_20200815_1126.py new file mode 100644 index 0000000..02e7755 --- /dev/null +++ b/app/posts/migrations/0010_auto_20200815_1126.py @@ -0,0 +1,18 @@ +# Generated by Django 3.1 on 2020-08-15 11:26 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('posts', '0009_auto_20200407_1347'), + ] + + operations = [ + migrations.AlterField( + model_name='post', + name='post_type', + field=models.IntegerField(choices=[(0, 'field test'), (1, 'review'), (2, 'essay'), (3, 'src'), (4, 'jrnl'), (5, 'field note')], default=4), + ), + ] |