report logs add status

This commit is contained in:
Hankin 2026-06-08 11:07:41 +08:00
parent 1a1be10d84
commit 7f8d43ad94

View File

@ -0,0 +1,4 @@
ALTER TABLE `health`.`ufutx_report_logs`
ADD COLUMN `user_type` ENUM("app", "admin") DEFAULT "app" COMMENT "用户类型" after `user_id`,
ADD COLUMN `status` TINYINT DEFAULT 0 COMMENT "状态" after `remark`,
ADD COLUMN `comment` VARCHAR(191) DEFAULT NULL COMMENT "备注" after `remark`