On ajoute des fichiers de migration manquants

This commit is contained in:
Jean-Marie Favreau 2023-11-11 23:36:51 +01:00
parent a6137e745a
commit cd1899d69b
2 changed files with 36 additions and 0 deletions

View File

@ -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)'),
),
]

View File

@ -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)'),
),
]