mirror of
https://github.com/ansible/awx.git
synced 2026-05-08 18:07:36 -02:30
Make dtstart field somewhat optional
This commit is contained in:
@@ -2,6 +2,7 @@
|
|||||||
# All Rights Reserved.
|
# All Rights Reserved.
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
|
import dateutil
|
||||||
|
|
||||||
# Django
|
# Django
|
||||||
from django.db import models
|
from django.db import models
|
||||||
@@ -33,7 +34,9 @@ class Schedule(CommonModel):
|
|||||||
default=True,
|
default=True,
|
||||||
)
|
)
|
||||||
dtstart = models.DateTimeField(
|
dtstart = models.DateTimeField(
|
||||||
|
null=True,
|
||||||
|
default=None,
|
||||||
|
editable=True,
|
||||||
)
|
)
|
||||||
dtend = models.DateTimeField(
|
dtend = models.DateTimeField(
|
||||||
null=True,
|
null=True,
|
||||||
|
|||||||
Reference in New Issue
Block a user