From be0d625d5957477b3bdacf301fa55041816efe26 Mon Sep 17 00:00:00 2001 From: Hankin Date: Mon, 7 Apr 2025 16:00:33 +0800 Subject: [PATCH] server question --- 1744008785_create_server_question.up.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 1744008785_create_server_question.up.sql 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