create table exam appointed log
This commit is contained in:
parent
62df18d7d4
commit
e04ccca59d
2
1763523183_table_exam_paper_add_appointed_time.up.sql
Normal file
2
1763523183_table_exam_paper_add_appointed_time.up.sql
Normal file
@ -0,0 +1,2 @@
|
||||
ALTER TABLE `ufutx_exam_paper`
|
||||
ADD COLUMN `appointed_time` JSON DEFAULT NULL comment "可预约时间" after `sort`
|
||||
8
1763536049_create_exam_appointed_log.up.sql
Normal file
8
1763536049_create_exam_appointed_log.up.sql
Normal 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 = '预约记录';
|
||||
Loading…
Reference in New Issue
Block a user