From 9eaf3ecdd8128aad21e5d9e6bfe1569abb1e76b6 Mon Sep 17 00:00:00 2001 From: Patrick Mayr Date: Mon, 27 Oct 2025 20:18:01 +0100 Subject: [PATCH] add migrations --- ...ption_alter_album_photographer_and_more.py | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 fet2020/gallery/migrations/0003_alter_album_description_alter_album_photographer_and_more.py diff --git a/fet2020/gallery/migrations/0003_alter_album_description_alter_album_photographer_and_more.py b/fet2020/gallery/migrations/0003_alter_album_description_alter_album_photographer_and_more.py new file mode 100644 index 00000000..d53b6ecf --- /dev/null +++ b/fet2020/gallery/migrations/0003_alter_album_description_alter_album_photographer_and_more.py @@ -0,0 +1,28 @@ +# Generated by Django 5.2.7 on 2025-10-27 19:17 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('gallery', '0002_album_event_place'), + ] + + operations = [ + migrations.AlterField( + model_name='album', + name='description', + field=models.TextField(blank=True, default=''), + ), + migrations.AlterField( + model_name='album', + name='photographer', + field=models.CharField(blank=True, default='', max_length=200, verbose_name='Fotograph(en)'), + ), + migrations.AlterField( + model_name='album', + name='thumbnail', + field=models.CharField(blank=True, default='', max_length=200, verbose_name='Thumbnail'), + ), + ]