From b19655bf6e6855a75a73d24c2b8de315518f055d Mon Sep 17 00:00:00 2001 From: luxagraf Date: Sat, 23 Jul 2022 15:47:14 -0500 Subject: jrnl: removed issue requirement from models and admin and lttr --- app/posts/migrations/0020_remove_post_issue.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 app/posts/migrations/0020_remove_post_issue.py (limited to 'app/posts/migrations') 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', + ), + ] -- cgit v1.2.3