schedules: remove timedelta options
This commit is contained in:
parent
3cd0e66b56
commit
6a2f266d53
1 changed files with 1 additions and 2 deletions
|
|
@ -5292,9 +5292,8 @@ class ScheduleEntry(Base, BaseModel):
|
|||
)
|
||||
SCHEDULE_TYPE_INTEGER = "integer"
|
||||
SCHEDULE_TYPE_CRONTAB = "crontab"
|
||||
SCHEDULE_TYPE_TIMEDELTA = "timedelta"
|
||||
|
||||
schedule_types = [SCHEDULE_TYPE_CRONTAB, SCHEDULE_TYPE_TIMEDELTA, SCHEDULE_TYPE_INTEGER]
|
||||
schedule_types = [SCHEDULE_TYPE_CRONTAB, SCHEDULE_TYPE_INTEGER]
|
||||
schedule_entry_id = Column('schedule_entry_id', Integer(), primary_key=True)
|
||||
|
||||
schedule_name = Column("schedule_name", String(255), nullable=False, unique=None, default=None)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue