summaryrefslogtreecommitdiff
path: root/app/unused_apps/essays/migrations/0010_essay_field_notes.py
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2019-10-07 15:27:00 -0400
committerluxagraf <sng@luxagraf.net>2019-10-07 15:27:00 -0400
commit4fec1159612fad17a7385ba8aadc4a4b165d5aa9 (patch)
treed413ea25e7c09efb29c4e80b8ffb3ca7c229a514 /app/unused_apps/essays/migrations/0010_essay_field_notes.py
parent9cdfb6ec377fa534c1203c1af46662c2a1ff6f61 (diff)
added new posts stuff and changed name of src posts
Diffstat (limited to 'app/unused_apps/essays/migrations/0010_essay_field_notes.py')
-rw-r--r--app/unused_apps/essays/migrations/0010_essay_field_notes.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/app/unused_apps/essays/migrations/0010_essay_field_notes.py b/app/unused_apps/essays/migrations/0010_essay_field_notes.py
new file mode 100644
index 0000000..ca15b38
--- /dev/null
+++ b/app/unused_apps/essays/migrations/0010_essay_field_notes.py
@@ -0,0 +1,19 @@
+# Generated by Django 2.1.7 on 2019-07-04 09:03
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('fieldnotes', '0002_auto_20190303_1222'),
+ ('essays', '0009_merge_20190414_1500'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='essay',
+ name='field_notes',
+ field=models.ManyToManyField(blank=True, to='fieldnotes.FieldNote'),
+ ),
+ ]