fix workflow scheduler

This commit is contained in:
jxxghp
2025-02-26 18:24:27 +08:00
parent a7c4161f91
commit eec25113b5
4 changed files with 6 additions and 3 deletions

View File

@@ -19,7 +19,7 @@ class Workflow(Base):
timer = Column(String)
# 状态W-等待 R-运行中 P-暂停 S-成功 F-失败
state = Column(String, nullable=False, index=True, default='W')
# 当前执行动作
# 执行动作,分隔)
current_action = Column(String)
# 任务执行结果
result = Column(String)