On rend facultatif le lieu

This commit is contained in:
Jean-Marie Favreau 2024-09-04 23:57:42 +02:00
parent e6e19cbcba
commit 2f1c5162f1
2 changed files with 20 additions and 0 deletions

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

View File

@ -362,6 +362,8 @@ class Event(models.Model):
),
max_length=512,
default="",
null=True,
blank=True
)
description = models.TextField(