From ac02b67e70564fceeb7e002214905f2ff209e9f8 Mon Sep 17 00:00:00 2001 From: Hankin Date: Wed, 19 Aug 2026 13:30:05 +0800 Subject: [PATCH] unify feedback log --- 1787110702_create_unify_feedback_log.up.sql | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 1787110702_create_unify_feedback_log.up.sql diff --git a/1787110702_create_unify_feedback_log.up.sql b/1787110702_create_unify_feedback_log.up.sql new file mode 100644 index 0000000..714a829 --- /dev/null +++ b/1787110702_create_unify_feedback_log.up.sql @@ -0,0 +1,11 @@ +CREATE TABLE `health`.`ufutx_unify_feedback_log` ( + `id` INT NOT NULL AUTO_INCREMENT, + `feedback_id` INT NOT NULL COMMENT "反馈id", + `user_id` INT NOT NULL COMMENT "用户id", + `user_type` TINYINT NOT NULL COMMENT "用户类型,1:用户,2:后台", + `content` text DEFAULT NULL COMMENT '文本', + `image` JSON DEFAULT 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