mirror of
https://github.com/ansible/awx.git
synced 2026-01-17 20:51:21 -03:30
Make dtstart field somewhat optional
This commit is contained in:
parent
ce2ae2b945
commit
65bb42c2f2
@ -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,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user