From 12cdd9e9e550c4e479e40c4127ec9f9ec0cc5c69 Mon Sep 17 00:00:00 2001 From: luxagraf Date: Mon, 14 Feb 2022 13:47:37 -0500 Subject: sght: added migration for name change --- .../migrations/0014_rename_image_ap_featured_image.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 app/sightings/migrations/0014_rename_image_ap_featured_image.py (limited to 'app/sightings') 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', + ), + ] -- cgit v1.2.3-70-g09d2