On ajoute des fichiers de migration manquants
This commit is contained in:
parent
a6137e745a
commit
cd1899d69b
18
src/agenda_culturel/migrations/0015_event_local_image.py
Normal file
18
src/agenda_culturel/migrations/0015_event_local_image.py
Normal 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)'),
|
||||
),
|
||||
]
|
@ -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)'),
|
||||
),
|
||||
]
|
Loading…
Reference in New Issue
Block a user