|
@@ -515,14 +515,15 @@ CREATE TABLE `m_problem_type` (
|
|
|
# ------------------------------------------------------------
|
|
|
|
|
|
DROP TABLE IF EXISTS `m_problem_history`;
|
|
|
-CREATE TABLE `m_arbitrate_history` (
|
|
|
+CREATE TABLE `m_problem_history` (
|
|
|
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增主键',
|
|
|
`exam_id` int(11) NOT NULL COMMENT '考试ID',
|
|
|
`subject_code` varchar(32) NOT NULL COMMENT '科目代码',
|
|
|
`group_number` int(11) NOT NULL COMMENT '大题号',
|
|
|
- `exam_number` varchar(64) NOT NULL COMMENT '准考证号',
|
|
|
`student_id` int(11) NOT NULL COMMENT '考生ID',
|
|
|
+ `exam_number` varchar(64) NOT NULL COMMENT '准考证号',
|
|
|
`library_id` int(11) NOT NULL COMMENT '评卷任务ID',
|
|
|
+ `problem_id` int(11) NOT NULL COMMENT '问题ID',
|
|
|
`status` int(11) NOT NULL COMMENT '状态',
|
|
|
`user_id` int(11) DEFAULT NULL COMMENT '处理人ID',
|
|
|
`total_score` double DEFAULT NULL COMMENT '总分',
|