summaryrefslogtreecommitdiff
path: root/app/jrnl/migrations/0052_entry_new_field_notes.py
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2020-10-27 21:28:36 -0400
committerluxagraf <sng@luxagraf.net>2020-10-27 21:28:36 -0400
commit1cfbf44615d5053e6e200972ff74ade38e7d7c31 (patch)
tree3338454de8f0526e764d97007c9d5de6c3ffda8e /app/jrnl/migrations/0052_entry_new_field_notes.py
parentb07690d2faaae41d815e67d078f76ad192202fab (diff)
switched jrnl related posts to use field_notes type within post model
Diffstat (limited to 'app/jrnl/migrations/0052_entry_new_field_notes.py')
-rw-r--r--app/jrnl/migrations/0052_entry_new_field_notes.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/app/jrnl/migrations/0052_entry_new_field_notes.py b/app/jrnl/migrations/0052_entry_new_field_notes.py
new file mode 100644
index 0000000..3ec3167
--- /dev/null
+++ b/app/jrnl/migrations/0052_entry_new_field_notes.py
@@ -0,0 +1,19 @@
+# Generated by Django 3.1 on 2020-10-27 21:04
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('posts', '0011_remove_post_jrnl'),
+ ('jrnl', '0051_auto_20201027_2102'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='entry',
+ name='new_field_notes',
+ field=models.ManyToManyField(blank=True, to='posts.Post'),
+ ),
+ ]