summaryrefslogtreecommitdiff
path: root/app/posts/migrations
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf>2021-03-23 22:21:25 -0400
committerluxagraf <sng@luxagraf>2021-03-23 22:21:25 -0400
commite807fb3c0e738b512acb68d230e4aae631d3c76d (patch)
tree11643c1170a1c8c82aeec712403fa8d11b8c131f /app/posts/migrations
parent70f50c11ec68fc1382d39108ed7da0d2be1ae503 (diff)
posts: added issue to handle mailing letter posts
Diffstat (limited to 'app/posts/migrations')
-rw-r--r--app/posts/migrations/0019_auto_20210323_2155.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/app/posts/migrations/0019_auto_20210323_2155.py b/app/posts/migrations/0019_auto_20210323_2155.py
new file mode 100644
index 0000000..0f3af44
--- /dev/null
+++ b/app/posts/migrations/0019_auto_20210323_2155.py
@@ -0,0 +1,23 @@
+# Generated by Django 3.1 on 2021-03-23 21:55
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('posts', '0018_auto_20210128_1708'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='post',
+ name='issue',
+ field=models.PositiveIntegerField(null=True),
+ ),
+ migrations.AlterField(
+ model_name='post',
+ name='post_type',
+ field=models.IntegerField(choices=[(0, 'range'), (1, 'review'), (2, 'essay'), (3, 'src'), (4, 'jrnl'), (5, 'field note'), (6, 'guide'), (7, 'friends')], default=4),
+ ),
+ ]