feat(workflow): add configurable workflow feature options

This commit is contained in:
Eternity
2026-03-18 16:20:18 +08:00
parent ff64522c50
commit 0ea47ce890
5 changed files with 95 additions and 7 deletions

View File

@@ -35,6 +35,7 @@ class WorkflowConfig(Base):
# 执行配置
execution_config = Column(JSONB, nullable=False, default=dict)
features = Column(JSONB, nullable=True, default=dict)
# 触发器配置(可选)
triggers = Column(JSONB, default=list)