Commit 1e3fa450e3ec901ddc0fdcb6951e5c5cc8344f63
Merge branch 'master_orgin' into 'master'
跟随编程添加表 See merge request !10
Showing
2 changed files
with
39 additions
and
0 deletions
.idea/vcs.xml
0 → 100644
database/sql_log.sql
| @@ -3247,3 +3247,36 @@ update zygj_solution_class set class_id=20718,class_status=1 where id=2327; | @@ -3247,3 +3247,36 @@ update zygj_solution_class set class_id=20718,class_status=1 where id=2327; | ||
| 3247 | -- ---------------------------- | 3247 | -- ---------------------------- |
| 3248 | -- 2017-09-25 liudaipeng 脚本版本 201709251010 END | 3248 | -- 2017-09-25 liudaipeng 脚本版本 201709251010 END |
| 3249 | ------------------------------- | 3249 | ------------------------------- |
| 3250 | + | ||
| 3251 | + | ||
| 3252 | + | ||
| 3253 | + | ||
| 3254 | + | ||
| 3255 | + | ||
| 3256 | +-- ---------------------------- | ||
| 3257 | +-- 2017-09-25 | ||
| 3258 | +-- 吴程程 | ||
| 3259 | +-- 脚本版本 20170925 | ||
| 3260 | +-- 涉及功能 跟随编程添加表 programming_room_teacherCourse | ||
| 3261 | +-- 执行环境 192.168.30.154 gxb_core | ||
| 3262 | +-- START | ||
| 3263 | +-- ---------------------------- | ||
| 3264 | + | ||
| 3265 | + | ||
| 3266 | +CREATE TABLE `programming_room_teacherCourse` ( | ||
| 3267 | + `id` bigint(32) NOT NULL AUTO_INCREMENT COMMENT '课程ID', | ||
| 3268 | + `user_id` bigint(32) DEFAULT NULL COMMENT '教师ID', | ||
| 3269 | + `room_id` bigint(32) DEFAULT NULL COMMENT '房间ID', | ||
| 3270 | + `course_name` varchar(255) NOT NULL, | ||
| 3271 | + `course_content` mediumtext COMMENT '课程内容', | ||
| 3272 | + `created_at` datetime NOT NULL COMMENT '创建时间', | ||
| 3273 | + `updated_at` datetime NOT NULL COMMENT '修改时间', | ||
| 3274 | + PRIMARY KEY (`id`) | ||
| 3275 | +) ENGINE=InnoDB AUTO_INCREMENT=57 DEFAULT CHARSET=utf8mb4 | ||
| 3276 | + | ||
| 3277 | + | ||
| 3278 | + | ||
| 3279 | + | ||
| 3280 | +-- ---------------------------- | ||
| 3281 | +-- 2017-09-25 liudaipeng 脚本版本 201709251010 END | ||
| 3282 | +------------------------------- |