add null=True for now

This commit is contained in:
Thomas Steen Rasmussen 2020-06-03 23:39:15 +02:00
parent 99bc1cf0a1
commit 2e969ac116

View file

@ -72,6 +72,7 @@ class Migration(migrations.Migration):
name="duration", name="duration",
field=models.IntegerField( field=models.IntegerField(
blank=True, blank=True,
null=True,
help_text="How much time (in minutes) should we set aside for this act? Please keep it between 60 and 180 minutes (1-3 hours).", help_text="How much time (in minutes) should we set aside for this act? Please keep it between 60 and 180 minutes (1-3 hours).",
), ),
), ),