agendas: avoid generating migration after reminder days change (#71874)

This commit is contained in:
Valentin Deniaud 2022-11-30 12:08:02 +01:00
parent 5cdfed07fd
commit ea8d6f70db
1 changed files with 1 additions and 6 deletions

View File

@ -24,12 +24,7 @@ class Migration(migrations.Migration):
'days',
models.IntegerField(
blank=True,
choices=[
(None, 'Never'),
(1, 'One day before'),
(2, 'Two days before'),
(3, 'Three days before'),
],
choices=chrono.agendas.models.AgendaReminderSettings.CHOICES,
null=True,
verbose_name='Send email reminder',
help_text=(