2021-待升级说明.txt 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. ***** ***** ***** ***** ***** ***** *****
  2. 数据库变更部分(!!!任何!!!表或字段的变化罗列此处)
  3. ***** ***** ***** ***** ***** ***** *****
  4. MySql部分
  5. 1.新增表ec_e_exam_ip_limit(考试ip限制表)
  6. CREATE TABLE `ec_e_exam_ip_limit` (
  7. `id` bigint(20) NOT NULL AUTO_INCREMENT,
  8. `exam_id` bigint(20) NOT NULL COMMENT '考试id',
  9. `ip` varchar(255) DEFAULT NULL COMMENT 'ip',
  10. `limit_type` varchar(50) DEFAULT NULL,
  11. `creation_time` datetime DEFAULT NULL,
  12. `update_time` datetime DEFAULT NULL,
  13. PRIMARY KEY (`id`),
  14. KEY `IDX_E_E_001001` (`exam_id`),
  15. KEY `IDX_E_E_001002` (`limit_type`)
  16. ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
  17. 2.添加索引
  18. ALTER TABLE ec_oes_exam_record_data ADD INDEX IDX_E_O_E_R_D_006 (`creation_time`);
  19. ALTER TABLE ec_oes_exam_record_data ADD INDEX IDX_E_O_E_R_D_007 (`base_paper_id`);
  20. ALTER TABLE ec_oe_exam_record_data ADD INDEX IDX_E_O_E_R_D_007 (`base_paper_id`);
  21. 3.表ec_m_export_task字段export_param长度修改
  22. alter table ec_oe_export_task modify column export_param varchar(1000);
  23. 4.表ec_e_user_notice 新增字段has_recalled
  24. alter table ec_e_user_notice add has_recalled bit(1) comment '是否已撤回';
  25. MongoDB部分
  26. todo
  27. Redis部分
  28. todo
  29. ***** ***** ***** ***** ***** ***** *****
  30. 数据割接工具
  31. ***** ***** ***** ***** ***** ***** *****
  32. 题库试卷结构刷入课程ID,执行examcloud-oe-tool工程下FillCourseIdService
  33. 题库试题属性增加code字段,老数据刷入id值为code,执行examcloud-oe-tool工程下FillPropertyCodeService
  34. ***** ***** ***** ***** ***** ***** *****
  35. 配置文件变更部分
  36. ***** ***** ***** ***** ***** ***** *****
  37. todo
  38. ***** ***** ***** ***** ***** ***** *****
  39. 菜单变更部分
  40. ***** ***** ***** ***** ***** ***** *****
  41. 题库管理菜单 --> 卷库管理 --> 试卷仓库管理 【编码:exam_paper_storage】【属性1:menu】 【权重:10】 【属性5:/questions/paper_storage/0】
  42. ***** ***** ***** ***** ***** ***** *****
  43. 其它参数变更部分
  44. ***** ***** ***** ***** ***** ***** *****
  45. todo
  46. ***** ***** ***** ***** ***** ***** *****
  47. 其它
  48. ***** ***** ***** ***** ***** ***** *****
  49. todo