agendas: alter existing migration to add help_text (#76334)
gitea/chrono/pipeline/head This commit looks good Details

This commit is contained in:
Benjamin Dauvergne 2023-04-06 12:17:53 +02:00
parent f28031f5a2
commit 75db853389
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',
),
),
]