diff options
author | luxagraf <sng@luxagraf.net> | 2022-02-14 13:47:37 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2022-02-14 13:47:37 -0500 |
commit | 12cdd9e9e550c4e479e40c4127ec9f9ec0cc5c69 (patch) | |
tree | d07a5464c7ae549ca951ef92ffd6248aa127cec1 | |
parent | 58e87c33396a3cbad57cdac2c89a6ac844742624 (diff) |
sght: added migration for name change
-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', + ), + ] |