exam answer add final score

This commit is contained in:
Hankin 2025-04-28 16:28:24 +08:00
parent 89cef90683
commit f4a32245bf
2 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,2 @@
ALTER TABLE `ufutx_exam_answer`
ADD COLUMN `final_score` int DEFAULT NULL COMMENT "最终分数" after `score`

View File

@ -0,0 +1,4 @@
ALTER TABLE `ufutx_exam_paper`
ADD COLUMN `score_time` timestamp null DEFAULT null COMMENT "查看分数时间" after `config`,
ADD COLUMN `end_time` timestamp null DEFAULT null COMMENT "结束时间" after `config`,
ADD COLUMN `start_time` timestamp null DEFAULT null COMMENT "开始时间" after `config`