diff options
author | luxagraf <sng@luxagraf.net> | 2018-02-09 09:38:10 -0600 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2018-02-09 09:38:10 -0600 |
commit | e8478ed252c39456ae67d3d4133380f2a88ca1c8 (patch) | |
tree | 2c26086e2e81e66743ecb1f6e9b654f53b1d742b /app/sightings/migrations/0003_auto_20180209_1037.py | |
parent | 6cee8cbc16731b1d37f67f025bcc503c4a4f5621 (diff) |
simplified sightings and added textfield for images and words
Diffstat (limited to 'app/sightings/migrations/0003_auto_20180209_1037.py')
-rw-r--r-- | app/sightings/migrations/0003_auto_20180209_1037.py | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/app/sightings/migrations/0003_auto_20180209_1037.py b/app/sightings/migrations/0003_auto_20180209_1037.py new file mode 100644 index 0000000..804bc47 --- /dev/null +++ b/app/sightings/migrations/0003_auto_20180209_1037.py @@ -0,0 +1,39 @@ +# Generated by Django 2.0.1 on 2018-02-09 10:37 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('sightings', '0002_auto_20180205_1430'), + ] + + operations = [ + migrations.RemoveField( + model_name='ap', + name='image', + ), + migrations.RemoveField( + model_name='ap', + name='image_credit', + ), + migrations.RemoveField( + model_name='sighting', + name='images', + ), + migrations.RemoveField( + model_name='sighting', + name='seen_by', + ), + migrations.AddField( + model_name='ap', + name='body_html', + field=models.TextField(blank=True, null=True), + ), + migrations.AddField( + model_name='ap', + name='body_markdown', + field=models.TextField(blank=True, null=True), + ), + ] |