From cd1899d69b1e9297102512cbb826c1521d495379 Mon Sep 17 00:00:00 2001 From: Jean-Marie Favreau Date: Sat, 11 Nov 2023 23:36:51 +0100 Subject: [PATCH] On ajoute des fichiers de migration manquants --- .../migrations/0015_event_local_image.py | 18 ++++++++++++++++++ .../migrations/0016_alter_event_local_image.py | 18 ++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 src/agenda_culturel/migrations/0015_event_local_image.py create mode 100644 src/agenda_culturel/migrations/0016_alter_event_local_image.py diff --git a/src/agenda_culturel/migrations/0015_event_local_image.py b/src/agenda_culturel/migrations/0015_event_local_image.py new file mode 100644 index 0000000..9c19e0d --- /dev/null +++ b/src/agenda_culturel/migrations/0015_event_local_image.py @@ -0,0 +1,18 @@ +# Generated by Django 4.2.1 on 2023-11-11 20:08 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('agenda_culturel', '0014_alter_event_image_alter_event_image_alt'), + ] + + operations = [ + migrations.AddField( + model_name='event', + name='local_image', + field=models.URLField(blank=True, help_text='Illustration image stored in the agenda server', max_length=1024, null=True, verbose_name='Illustration (local image)'), + ), + ] diff --git a/src/agenda_culturel/migrations/0016_alter_event_local_image.py b/src/agenda_culturel/migrations/0016_alter_event_local_image.py new file mode 100644 index 0000000..67a357b --- /dev/null +++ b/src/agenda_culturel/migrations/0016_alter_event_local_image.py @@ -0,0 +1,18 @@ +# Generated by Django 4.2.1 on 2023-11-11 20:15 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('agenda_culturel', '0015_event_local_image'), + ] + + operations = [ + migrations.AlterField( + model_name='event', + name='local_image', + field=models.ImageField(blank=True, help_text='Illustration image stored in the agenda server', max_length=1024, null=True, upload_to='', verbose_name='Illustration (local image)'), + ), + ]