diff --git a/1744008785_create_server_question.up.sql b/1744008785_create_server_question.up.sql new file mode 100644 index 0000000..8eb2c62 --- /dev/null +++ b/1744008785_create_server_question.up.sql @@ -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 = '教练对用户的评估报告'; \ No newline at end of file