Make dtstart field somewhat optional

This commit is contained in:
Matthew Jones 2014-03-27 16:00:52 -04:00
parent ce2ae2b945
commit 65bb42c2f2

View File

@ -2,6 +2,7 @@
# All Rights Reserved.
import logging
import dateutil
# Django
from django.db import models
@ -33,7 +34,9 @@ class Schedule(CommonModel):
default=True,
)
dtstart = models.DateTimeField(
null=True,
default=None,
editable=True,
)
dtend = models.DateTimeField(
null=True,