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