Commit 9c7a825776371809fe40d148094bf14a3fe4caef
1 parent
ea7de9b4
脚本修改
Showing
1 changed file
with
19 additions
and
1 deletions
database/sql_log.sql
| ... | ... | @@ -4135,4 +4135,22 @@ ALTER TABLE `zygj_solution` CHANGE `product_direction` `product_direction` INT(1 |
| 4135 | 4135 | ALTER TABLE `gxb_core`.`zygj_class_schedule` ADD (teacher_type INT DEFAULT 0 NOT NULL); |
| 4136 | 4136 | -- ---------------------------- |
| 4137 | 4137 | -- 2017-11-08 tluo 脚本版本 201711081100 END |
| 4138 | -------------------------------- | |
| 4139 | 4138 | \ No newline at end of file |
| 4139 | +------------------------------- | |
| 4140 | + | |
| 4141 | + | |
| 4142 | +-- ---------------------------- | |
| 4143 | +-- 2017-11-08 | |
| 4144 | +-- tluo | |
| 4145 | +-- 脚本版本 201711081926 | |
| 4146 | +-- 涉及功能 班次添加产品方向和课程心态字段,脚本修复 | |
| 4147 | +-- START | |
| 4148 | +-- ---------------------------- | |
| 4149 | +alter table `class` drop column product_direction; | |
| 4150 | +alter table `class` drop column class_form; | |
| 4151 | + | |
| 4152 | +alter table class add product_direction int(11) NULL DEFAULT '-1' COMMENT '产品方向,0:待分配、1:云计算、2:大数据技术与应用、3:智能硬件、4:虚拟现实(VR)、5:互联网产品设计、6:互联网营销、7:互联网金融、8:网络空间安全、9:人工智能、10:互联网医疗、11:互联网教育、12:智能制造、13:通识素养'; | |
| 4153 | + | |
| 4154 | +alter table class add class_form tinyint(2) NULL DEFAULT '0' COMMENT '课程形态, 1:在线课,2: 非在线课'; | |
| 4155 | +-- ---------------------------- | |
| 4156 | +-- 2017-11-08 tluo 脚本版本 201711081926 END | |
| 4157 | +------------------------------- | ... | ... |