agendas: alter existing migration to add help_text (#76334) #66

Merged
bdauvergne merged 1 commits from wip/76334-migration-manquante into main 2023-04-06 12:35:25 +02:00
1 changed files with 5 additions and 1 deletions

View File

@ -15,7 +15,11 @@ class Migration(migrations.Migration):
model_name='agenda',
name='minimal_booking_time',
field=models.TimeField(
blank=True, default=datetime.time(0, 0), null=True, verbose_name='Minimal booking time'
blank=True,
default=datetime.time(0, 0),
null=True,
help_text='Ex.: 08:00:00. If left empty, available events will be those that are later than the current time.',
verbose_name='Minimal booking time',
),
),
]