add null=True for now

This commit is contained in:
Thomas Steen Rasmussen 2020-06-03 23:36:30 +02:00
parent 341fa7394d
commit 99bc1cf0a1
1 changed files with 1 additions and 0 deletions

View File

@ -45,6 +45,7 @@ class Migration(migrations.Migration):
name="duration_minutes",
field=models.PositiveIntegerField(
blank=True,
null=True,
default=None,
help_text="The duration of this event in minutes. Leave blank to use the default from the event_type.",
),