diff options
author | luxagraf <sng@luxagraf.net> | 2023-07-26 16:55:24 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2023-07-26 16:55:24 -0500 |
commit | 65b1bb075774478bc717de81f0737f96cf32e497 (patch) | |
tree | f9d24eb2165f97c93e7dcd511c4d37ab3af9312c /app/posts | |
parent | 8e429c6b453e1061ee997934f241f76f2f103710 (diff) |
posts: added migrations
Diffstat (limited to 'app/posts')
-rw-r--r-- | app/posts/migrations/0015_delete_note.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/app/posts/migrations/0015_delete_note.py b/app/posts/migrations/0015_delete_note.py new file mode 100644 index 0000000..bf6346e --- /dev/null +++ b/app/posts/migrations/0015_delete_note.py @@ -0,0 +1,16 @@ +# Generated by Django 4.2.2 on 2023-07-26 21:48 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('posts', '0014_alter_note_post_alter_note_user'), + ] + + operations = [ + migrations.DeleteModel( + name='Note', + ), + ] |