diff options
Diffstat (limited to 'app/sightings/migrations/0004_ap_main_image.py')
-rw-r--r-- | app/sightings/migrations/0004_ap_main_image.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/app/sightings/migrations/0004_ap_main_image.py b/app/sightings/migrations/0004_ap_main_image.py new file mode 100644 index 0000000..70e1937 --- /dev/null +++ b/app/sightings/migrations/0004_ap_main_image.py @@ -0,0 +1,18 @@ +# Generated by Django 2.0.1 on 2018-05-16 17:48 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('sightings', '0003_auto_20180209_1037'), + ] + + operations = [ + migrations.AddField( + model_name='ap', + name='main_image', + field=models.CharField(max_length=200, null=True), + ), + ] |