Commit 002eaf0661e75ec56b282e8180ff1e122260dbda

Authored by luotong
1 parent fade7bda

Y线-1.7迭代sql添加

Showing 1 changed file with 18 additions and 0 deletions
database/sql_log.sql
@@ -2744,5 +2744,23 @@ update zygj_class_category set name='毕业设计︵论文︶' where id=17; @@ -2744,5 +2744,23 @@ update zygj_class_category set name='毕业设计︵论文︶' where id=17;
2744 -- 2017-09-11 刘岱鹏 脚本版本 201709111442 END 2744 -- 2017-09-11 刘岱鹏 脚本版本 201709111442 END
2745 -- ---------------------------- 2745 -- ----------------------------
2746 2746
  2747 +-- ----------------------------
  2748 +-- 2017-09-13
  2749 +-- 罗銅
  2750 +-- 代码版本 feature/fix170914
  2751 +-- 脚本版本 201709131508
  2752 +-- 涉及功能 Y线v-1.7: 删除方案课程、班级同时删除排课信息;搜索课程支持层次;
  2753 +-- 执行环境 予发布和灰度
  2754 +-- START
  2755 +-- ----------------------------
  2756 +
  2757 +alter table zygj_class_schedule add solution_id bigint(20) not null default 0 comment '方案id';
  2758 +
  2759 +update zygj_class_schedule s inner join zygj_solution_term t on s.`solution_term_id` = t.id set s.`solution_id` = t.`zygj_solution_id` where s.`solution_id` = 0
  2760 +
  2761 +-- ----------------------------
  2762 +-- 2017-09-13 罗銅 脚本版本 201709131508 END
  2763 +-- ----------------------------
  2764 +
2747 2765
2748 2766