From 1cfbf44615d5053e6e200972ff74ade38e7d7c31 Mon Sep 17 00:00:00 2001 From: luxagraf Date: Tue, 27 Oct 2020 21:28:36 -0400 Subject: switched jrnl related posts to use field_notes type within post model --- app/jrnl/migrations/0052_entry_new_field_notes.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 app/jrnl/migrations/0052_entry_new_field_notes.py (limited to 'app/jrnl/migrations/0052_entry_new_field_notes.py') 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'), + ), + ] -- cgit v1.2.3-70-g09d2