From 0b399c59605723236e67009d6cf869952b3dddf0 Mon Sep 17 00:00:00 2001 From: luxagraf Date: Sun, 3 Mar 2019 15:21:44 -0600 Subject: added actual migrations for previous commit --- app/jrnl/migrations/0034_remove_entry_field_notes.py | 17 +++++++++++++++++ app/jrnl/migrations/0035_auto_20190303_1610.py | 18 ++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 app/jrnl/migrations/0034_remove_entry_field_notes.py create mode 100644 app/jrnl/migrations/0035_auto_20190303_1610.py (limited to 'app/jrnl') diff --git a/app/jrnl/migrations/0034_remove_entry_field_notes.py b/app/jrnl/migrations/0034_remove_entry_field_notes.py new file mode 100644 index 0000000..a0e93b0 --- /dev/null +++ b/app/jrnl/migrations/0034_remove_entry_field_notes.py @@ -0,0 +1,17 @@ +# Generated by Django 2.1.7 on 2019-03-03 16:10 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('jrnl', '0033_entry_field_notes_two'), + ] + + operations = [ + migrations.RemoveField( + model_name='entry', + name='field_notes', + ), + ] diff --git a/app/jrnl/migrations/0035_auto_20190303_1610.py b/app/jrnl/migrations/0035_auto_20190303_1610.py new file mode 100644 index 0000000..7b51186 --- /dev/null +++ b/app/jrnl/migrations/0035_auto_20190303_1610.py @@ -0,0 +1,18 @@ +# Generated by Django 2.1.7 on 2019-03-03 16:10 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('jrnl', '0034_remove_entry_field_notes'), + ] + + operations = [ + migrations.RenameField( + model_name='entry', + old_name='field_notes_two', + new_name='field_notes', + ), + ] -- cgit v1.2.3-70-g09d2