server question

This commit is contained in:
Hankin 2025-04-07 16:00:33 +08:00
parent 9f69aaad93
commit be0d625d59

View 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 = '教练对用户的评估报告';