diff options
author | luxagraf <sng@luxagraf.net> | 2019-03-03 14:36:45 -0600 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2019-03-03 14:36:45 -0600 |
commit | cfeeda7adec97d618ad1fc01926b1fa88298fc85 (patch) | |
tree | 94a9a32ea21fce81ba55c6ecd3439a1d501d81a9 /app/jrnl/migrations | |
parent | c0f15e7e83cde5da08c42bbf94cb93db8d3f3a2c (diff) |
Change sketches to fieldnotes and redid design to allow posting single
photos
Diffstat (limited to 'app/jrnl/migrations')
-rw-r--r-- | app/jrnl/migrations/0033_entry_field_notes_two.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/app/jrnl/migrations/0033_entry_field_notes_two.py b/app/jrnl/migrations/0033_entry_field_notes_two.py new file mode 100644 index 0000000..b90e86b --- /dev/null +++ b/app/jrnl/migrations/0033_entry_field_notes_two.py @@ -0,0 +1,19 @@ +# Generated by Django 2.1.7 on 2019-03-03 15:25 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('fieldnotes', '0002_auto_20190303_1222'), + ('jrnl', '0032_entry_subtitle'), + ] + + operations = [ + migrations.AddField( + model_name='entry', + name='field_notes_two', + field=models.ManyToManyField(blank=True, to='fieldnotes.FieldNote'), + ), + ] |