From 86bfaa0f55ee35061eef1c0de4f768689eb2e658 Mon Sep 17 00:00:00 2001 From: moanos Date: Fri, 31 May 2024 14:56:55 +0200 Subject: [PATCH] fix: add migration for image --- .../migrations/0009_remove_image_title.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/fellchensammlung/migrations/0009_remove_image_title.py diff --git a/src/fellchensammlung/migrations/0009_remove_image_title.py b/src/fellchensammlung/migrations/0009_remove_image_title.py new file mode 100644 index 0000000..84c9b03 --- /dev/null +++ b/src/fellchensammlung/migrations/0009_remove_image_title.py @@ -0,0 +1,17 @@ +# Generated by Django 5.0.6 on 2024-06-06 08:48 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ("fellchensammlung", "0008_remove_location_osm_id"), + ] + + operations = [ + migrations.RemoveField( + model_name="image", + name="title", + ), + ]