Browse Source

3.4.4 update-20250410,bug修改

xiaofei 3 months ago
parent
commit
3dc2e5b308
1 changed files with 9 additions and 1 deletions
  1. 9 1
      distributed-print/install/mysql/init/teachcloud_db.sql

+ 9 - 1
distributed-print/install/mysql/init/teachcloud_db.sql

@@ -1585,11 +1585,19 @@ CREATE TABLE IF NOT EXISTS `mark_archive_student`
     `sheet_urls`           mediumtext COMMENT '图片地址',
     `subjective_questions` mediumtext,
     `objective_questions`  mediumtext,
-    `card_content`         mediumtext,
+    `archive_card_id`      varchar(50),
     `create_time`          bigint       DEFAULT NULL,
     PRIMARY KEY (`student_id`) USING BTREE
 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC COMMENT='考生归档数据表';
 
+-- ----------------------------
+-- Table structure for mark_archive_student_card
+-- ----------------------------
+CREATE TABLE `mark_archive_student_card` (
+     `id` VARCHAR(50) NOT NULL,
+     `card_content` MEDIUMTEXT NULL,
+     PRIMARY KEY (`id`));
+
 -- ----------------------------
 -- Table structure for mark_document
 -- ----------------------------