xiatian пре 17 часа
родитељ
комит
ad2708a7e3
2 измењених фајлова са 4 додато и 0 уклоњено
  1. 2 0
      install/mysql/init/stmms_ft.sql
  2. 2 0
      install/mysql/upgrade/2.0.0.sql

+ 2 - 0
install/mysql/init/stmms_ft.sql

@@ -60,6 +60,8 @@ INSERT INTO `b_sys_config` (`id`, `type`, `description`, `update_time`)
 VALUES (3, 'AUTO_REPORT', null, '2021-08-09 15:38:58');
 INSERT INTO `b_sys_config` (`id`, `type`, `description`, `update_time`)
 VALUES (4, 'STUDENT_SHEET_COUNT', null, '2021-08-09 15:38:58');
+INSERT INTO `b_sys_config` (`id`, `type`, `description`, `update_time`)
+VALUES (5, 'QUALITY_ANALYSIS', null, now() );
 UNLOCK TABLES;
 
 

+ 2 - 0
install/mysql/upgrade/2.0.0.sql

@@ -1,6 +1,8 @@
 -- 2.0.0
 
 USE `stmms_ft`;
+INSERT INTO `b_sys_config` (`id`, `type`, `description`, `update_time`)
+VALUES (5, 'QUALITY_ANALYSIS', null, now() );
 
 ALTER TABLE eb_exam ADD COLUMN `mark_scroll_bottom` tinyint(1)  NOT NULL DEFAULT 0 COMMENT '评卷时强制试卷拉到底部';
 ALTER TABLE eb_exam ADD COLUMN `min_mark_duration` int(11)  DEFAULT NULL  COMMENT '最小阅卷时长(秒)';