server question
This commit is contained in:
parent
9f69aaad93
commit
be0d625d59
10
1744008785_create_server_question.up.sql
Normal file
10
1744008785_create_server_question.up.sql
Normal file
@ -0,0 +1,10 @@
|
||||
CREATE TABLE `ufutx_server_question` (
|
||||
`id` BIGINT NOT NULL AUTO_INCREMENT ,
|
||||
`user_id` INT NOT null COMMENT "用户id",
|
||||
`order_id` INT NOT null COMMENT "订单id",
|
||||
`type` TINYINT NOT NULL COMMENT "类型 1:3天,2:60天",
|
||||
`content` text NOT NULL COMMENT "内容",
|
||||
`created_at` TIMESTAMP NULL DEFAULT NULL ,
|
||||
`updated_at` TIMESTAMP NULL DEFAULT NULL ,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE = InnoDB COMMENT = '教练对用户的评估报告';
|
Loading…
Reference in New Issue
Block a user