mirror of
https://github.com/ansible/awx.git
synced 2026-03-13 15:09:32 -02:30
Make dtstart field somewhat optional
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user