diff options
author | luxagraf <sng@luxagraf.net> | 2020-08-15 12:01:44 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2020-08-15 12:01:44 -0400 |
commit | df225728281378c7047e1aded2910fbb399b650e (patch) | |
tree | 0ec949d974d30032b599280bf9d69bc39d144cda /app | |
parent | b66d000ee469539ce7aea557b612c0444177e36d (diff) |
added posts migration
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), + ), + ] |