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.
6 lines
300 B
6 lines
300 B
-- 02-migration: 补充 flow_definitions 缺失列
|
|
-- 幂等执行,IF NOT EXISTS 重复运行不会报错
|
|
|
|
ALTER TABLE flow_definitions ADD COLUMN IF NOT EXISTS published_to_wecom BOOLEAN DEFAULT FALSE;
|
|
|
|
ALTER TABLE flow_definitions ADD COLUMN IF NOT EXISTS published_to_web BOOLEAN DEFAULT FALSE;
|
|
|