summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2019-03-03 15:21:44 -0600
committerluxagraf <sng@luxagraf.net>2019-03-03 15:21:44 -0600
commit0b399c59605723236e67009d6cf869952b3dddf0 (patch)
treedbcdcf46ddcad05ec770ad534a9cc47671baba6b
parente7a8265a14716405e9a2693ab2465e58fbf54aa2 (diff)
added actual migrations for previous commit
-rw-r--r--app/jrnl/migrations/0034_remove_entry_field_notes.py17
-rw-r--r--app/jrnl/migrations/0035_auto_20190303_1610.py18
2 files changed, 35 insertions, 0 deletions
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',
+ ),
+ ]