first commit
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
-- 亲子活动增加模板设置状态,并根据现有工作模板回填历史数据。
|
||||
ALTER TABLE `family_activity`
|
||||
ADD COLUMN `templateStatus` tinyint(1) NOT NULL DEFAULT 0 COMMENT '模板设置状态 0.未设置 1.已设置';
|
||||
|
||||
UPDATE `family_activity` activity
|
||||
INNER JOIN `sys_home_template` template ON template.`id` = activity.`id`
|
||||
SET activity.`templateStatus` = 1;
|
||||
Reference in New Issue
Block a user