Fix: Make event.plugins non-Null by default

This commit is contained in:
Martin Gross
2019-02-19 12:38:32 +01:00
committed by GitHub
parent 777772b89e
commit d5747084ec

View File

@@ -321,7 +321,7 @@ class Event(EventMixin, LoggedModel):
verbose_name=_("Location"),
)
plugins = models.TextField(
null=True, blank=True,
null=False, blank=True,
verbose_name=_("Plugins"),
)
comment = models.TextField(