You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
341 B
7 lines
341 B
-- 05-flow-mode.sql
|
|
-- FlowDefinition 新增 flow_mode 字段,区分对话型和工作流型
|
|
|
|
ALTER TABLE flow_definitions ADD COLUMN IF NOT EXISTS flow_mode VARCHAR(20) DEFAULT 'chatflow';
|
|
|
|
-- 已有数据默认设为 chatflow(对话型),保持向后兼容
|
|
UPDATE flow_definitions SET flow_mode = 'chatflow' WHERE flow_mode IS NULL;
|