diff options
Diffstat (limited to 'app/posts/migrations/0012_remove_post_field_notes.py')
-rw-r--r-- | app/posts/migrations/0012_remove_post_field_notes.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/app/posts/migrations/0012_remove_post_field_notes.py b/app/posts/migrations/0012_remove_post_field_notes.py new file mode 100644 index 0000000..a1e19a2 --- /dev/null +++ b/app/posts/migrations/0012_remove_post_field_notes.py @@ -0,0 +1,17 @@ +# Generated by Django 3.1 on 2020-11-11 21:48 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('posts', '0011_remove_post_jrnl'), + ] + + operations = [ + migrations.RemoveField( + model_name='post', + name='field_notes', + ), + ] |