summaryrefslogtreecommitdiff
path: root/app/jrnl/migrations/0051_auto_20201027_2102.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/0051_auto_20201027_2102.py
parentb07690d2faaae41d815e67d078f76ad192202fab (diff)
switched jrnl related posts to use field_notes type within post model
Diffstat (limited to 'app/jrnl/migrations/0051_auto_20201027_2102.py')
-rw-r--r--app/jrnl/migrations/0051_auto_20201027_2102.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/app/jrnl/migrations/0051_auto_20201027_2102.py b/app/jrnl/migrations/0051_auto_20201027_2102.py
new file mode 100644
index 0000000..09d0dea
--- /dev/null
+++ b/app/jrnl/migrations/0051_auto_20201027_2102.py
@@ -0,0 +1,18 @@
+# Generated by Django 3.1 on 2020-10-27 21:02
+
+from django.db import migrations
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('jrnl', '0050_auto_20191206_0741'),
+ ]
+
+ operations = [
+ migrations.RenameField(
+ model_name='entry',
+ old_name='field_notes',
+ new_name='old_field_notes',
+ ),
+ ]