diff options
author | luxagraf <sng@luxagraf.net> | 2020-11-11 21:50:31 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2020-11-11 21:50:31 -0500 |
commit | ef37adba510d3f18fe23f7bc34071c70df21a191 (patch) | |
tree | 8dff9f5eb5a50d03d359bab9bb974ded41cfdc07 /app/posts | |
parent | 199184b3b680bc4c8878bf11a60c0fbf72fb612f (diff) |
added a posts migration as well
Diffstat (limited to 'app/posts')
-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', + ), + ] |