create table exam appointed log

This commit is contained in:
Hankin 2025-11-19 15:21:14 +08:00
parent 62df18d7d4
commit e04ccca59d
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,2 @@
ALTER TABLE `ufutx_exam_paper`
ADD COLUMN `appointed_time` JSON DEFAULT NULL comment "可预约时间" after `sort`

View File

@ -0,0 +1,8 @@
CREATE TABLE `ufutx_exam_appointed_log` (
`id` INT NOT NULL AUTO_INCREMENT,
`user_id` INTEGER NOT NULL COMMENT '用户id',
`name` VARCHAR(50) DEFAULT NULL COMMENT '昵称',
`mobile` VARCHAR(50) DEFAULT NULL COMMENT '手机号',
`appointed_time` JSON DEFAULT NULL COMMENT '预约时间',
PRIMARY KEY (`id`)
) ENGINE = InnoDB COMMENT = '预约记录';