diff options
author | luxagraf <sng@luxagraf.net> | 2020-11-11 22:39:19 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2020-11-11 22:39:19 -0500 |
commit | d16c597d1e4e52ab1df1c77bda54445437bac5c0 (patch) | |
tree | 30b8d52cb3c874ad7656be08d1295529353a97db /app/unused_apps/fieldnotes/migrations/0002_auto_20190303_1222.py | |
parent | ef37adba510d3f18fe23f7bc34071c70df21a191 (diff) |
cleaned up Posts Admin and added field_notes
Diffstat (limited to 'app/unused_apps/fieldnotes/migrations/0002_auto_20190303_1222.py')
-rw-r--r-- | app/unused_apps/fieldnotes/migrations/0002_auto_20190303_1222.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/app/unused_apps/fieldnotes/migrations/0002_auto_20190303_1222.py b/app/unused_apps/fieldnotes/migrations/0002_auto_20190303_1222.py new file mode 100644 index 0000000..c0e352e --- /dev/null +++ b/app/unused_apps/fieldnotes/migrations/0002_auto_20190303_1222.py @@ -0,0 +1,25 @@ +# Generated by Django 2.1.7 on 2019-03-03 12:22 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('photos', '0018_auto_20161130_1218'), + ('fieldnotes', '0001_initial'), + ] + + operations = [ + migrations.AddField( + model_name='fieldnote', + name='featured_image', + field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='photos.LuxImage'), + ), + migrations.AddField( + model_name='fieldnote', + name='note_type', + field=models.IntegerField(choices=[(0, 'Note'), (1, 'Photo')], default=0), + ), + ] |