Skip to content

Commit

Permalink
update task default
Browse files Browse the repository at this point in the history
  • Loading branch information
afourmy committed Jul 25, 2019
1 parent 2a9092f commit 9707ac4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eNMS/models/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class Task(AbstractBase):
name = Column(String(SMALL_STRING_LENGTH), unique=True)
description = Column(String(SMALL_STRING_LENGTH), default="")
creation_time = Column(String(SMALL_STRING_LENGTH), default="")
scheduling_mode = Column(String(SMALL_STRING_LENGTH), default="cron")
scheduling_mode = Column(String(SMALL_STRING_LENGTH), default="standard")
periodic = Column(Boolean)
frequency = Column(Integer)
frequency_unit = Column(String(SMALL_STRING_LENGTH), default="seconds")
Expand Down

0 comments on commit 9707ac4

Please sign in to comment.