diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/sightings/migrations/0014_rename_image_ap_featured_image.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/app/sightings/migrations/0014_rename_image_ap_featured_image.py b/app/sightings/migrations/0014_rename_image_ap_featured_image.py new file mode 100644 index 0000000..64c5248 --- /dev/null +++ b/app/sightings/migrations/0014_rename_image_ap_featured_image.py @@ -0,0 +1,18 @@ +# Generated by Django 4.0.2 on 2022-02-14 08:18 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('sightings', '0013_fieldnote_sighting_location'), + ] + + operations = [ + migrations.RenameField( + model_name='ap', + old_name='image', + new_name='featured_image', + ), + ] |