summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2022-02-14 13:47:37 -0500
committerluxagraf <sng@luxagraf.net>2022-02-14 13:47:37 -0500
commit12cdd9e9e550c4e479e40c4127ec9f9ec0cc5c69 (patch)
treed07a5464c7ae549ca951ef92ffd6248aa127cec1
parent58e87c33396a3cbad57cdac2c89a6ac844742624 (diff)
sght: added migration for name change
-rw-r--r--app/sightings/migrations/0014_rename_image_ap_featured_image.py18
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',
+ ),
+ ]