On rend facultatif le lieu
This commit is contained in:
parent
e6e19cbcba
commit
2f1c5162f1
18
src/agenda_culturel/migrations/0073_alter_event_location.py
Normal file
18
src/agenda_culturel/migrations/0073_alter_event_location.py
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
# Generated by Django 4.2.9 on 2024-09-04 21:57
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('agenda_culturel', '0072_alter_recurrentimport_processor'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='event',
|
||||||
|
name='location',
|
||||||
|
field=models.CharField(blank=True, default='', help_text='Address of the event in case its not available in the already known places (free form)', max_length=512, null=True, verbose_name='Location (free form)'),
|
||||||
|
),
|
||||||
|
]
|
@ -362,6 +362,8 @@ class Event(models.Model):
|
|||||||
),
|
),
|
||||||
max_length=512,
|
max_length=512,
|
||||||
default="",
|
default="",
|
||||||
|
null=True,
|
||||||
|
blank=True
|
||||||
)
|
)
|
||||||
|
|
||||||
description = models.TextField(
|
description = models.TextField(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user