Commit ad35908ebeb8840ebb17dc54273727449cef61a1

Authored by 刘岱鹏
1 parent 05d211ad

修复sql

Showing 1 changed file with 4 additions and 4 deletions
database/sql_log.sql
... ... @@ -2646,10 +2646,10 @@ INSERT INTO zygj_class_category (id, name, level, parent_id, created_at, updated
2646 2646 INSERT INTO zygj_class_category (id, name, level, parent_id, created_at, updated_at, delete_flag, tenant_id, user_id) VALUES (25, '讲座、两组学习、劳动、社团活动等', 2, 22, '2017-08-28 17:15:55', '2017-08-28 17:27:50', 1, null, null);
2647 2647  
2648 2648  
2649   -ALTER TABLE `zygj_solution_class` ADD `practice_hour` `practice_hour` INT(11) NOT NULL DEFAULT '0' COMMENT '实践学时,小时为单位';
2650   -ALTER TABLE `zygj_solution_class` ADD `theory_hour` `theory_hour` INT(11) NOT NULL DEFAULT '0' COMMENT '理论学时,小时为单位';
2651   -ALTER TABLE `zygj_solution_class` ADD `class_target` `class_target` VARCHAR(20) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '0' COMMENT 'prefession,class 慧科课程 SchoolClass 学校自建课程';
2652   -ALTER TABLE `zygj_solution_class` ADD `category_id` `category_id` BIGINT(20) NOT NULL DEFAULT '0' COMMENT '课程分类,二级分类ID';
  2649 +ALTER TABLE `zygj_solution_class` ADD `practice_hour` INT(11) NOT NULL DEFAULT '0' COMMENT '实践学时,小时为单位';
  2650 +ALTER TABLE `zygj_solution_class` ADD `theory_hour` INT(11) NOT NULL DEFAULT '0' COMMENT '理论学时,小时为单位';
  2651 +ALTER TABLE `zygj_solution_class` ADD `class_target` VARCHAR(20) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '0' COMMENT 'prefession,class 慧科课程 SchoolClass 学校自建课程';
  2652 +ALTER TABLE `zygj_solution_class` ADD `category_id` BIGINT(20) NOT NULL DEFAULT '0' COMMENT '课程分类,二级分类ID';
2653 2653  
2654 2654 ALTER TABLE `zygj_class_schedule` ADD `class_target` VARCHAR(20) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '0' COMMENT '课程类型';
2655 2655  
... ...