summaryrefslogtreecommitdiff
path: root/app/posts/migrations/0020_remove_post_issue.py
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2022-07-23 15:47:14 -0500
committerluxagraf <sng@luxagraf.net>2022-07-23 15:47:14 -0500
commitb19655bf6e6855a75a73d24c2b8de315518f055d (patch)
tree3c613ce704b4114a2c7d2804627a3ae033336bca /app/posts/migrations/0020_remove_post_issue.py
parent735ef1fef241b90b3d05f589d633c02b100d654b (diff)
jrnl: removed issue requirement from models and admin and lttr
Diffstat (limited to 'app/posts/migrations/0020_remove_post_issue.py')
-rw-r--r--app/posts/migrations/0020_remove_post_issue.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/app/posts/migrations/0020_remove_post_issue.py b/app/posts/migrations/0020_remove_post_issue.py
new file mode 100644
index 0000000..aa5695c
--- /dev/null
+++ b/app/posts/migrations/0020_remove_post_issue.py
@@ -0,0 +1,17 @@
+# Generated by Django 4.0.6 on 2022-07-23 16:29
+
+from django.db import migrations
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('posts', '0019_auto_20210323_2155'),
+ ]
+
+ operations = [
+ migrations.RemoveField(
+ model_name='post',
+ name='issue',
+ ),
+ ]