diff options
author | luxagraf <sng@luxagraf.net> | 2019-03-03 15:35:50 -0600 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2019-03-03 15:35:50 -0600 |
commit | 742820a0f6ad0c8e05d127d48b3724ebef1b702a (patch) | |
tree | 5eeab9df03afea7569463e5f7e465412e19a5d06 /app/essays/migrations | |
parent | a7d51bb569ce2c3ff0830e4cd2a1369dd75dd05f (diff) |
migrated essays to new field_notes
Diffstat (limited to 'app/essays/migrations')
-rw-r--r-- | app/essays/migrations/0006_auto_20190303_1625.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/app/essays/migrations/0006_auto_20190303_1625.py b/app/essays/migrations/0006_auto_20190303_1625.py new file mode 100644 index 0000000..dde70fd --- /dev/null +++ b/app/essays/migrations/0006_auto_20190303_1625.py @@ -0,0 +1,18 @@ +# Generated by Django 2.1.7 on 2019-03-03 16:25 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('essays', '0005_auto_20190208_0946'), + ] + + operations = [ + migrations.AlterField( + model_name='essay', + name='field_notes', + field=models.ManyToManyField(blank=True, to='fieldnotes.FieldNote'), + ), + ] |