This commit is contained in:
Hankin 2026-05-26 17:10:06 +08:00
parent 33904da059
commit bfb17aecd6
4 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,2 @@
ALTER TABLE `health`.`ufutx_dma_symptom`
ADD COLUMN `config` JSON DEFAULT NULL comment "配置信息" after `title`

View File

@ -0,0 +1,3 @@
ALTER TABLE `health`.`ufutx_label`
ADD COLUMN `config` JSON DEFAULT NULL comment "配置信息" after `name`,
ADD COLUMN `deleted_at` TIMESTAMP NULL DEFAULT NULL comment "删除时间" after `updated_at`

View File

@ -0,0 +1,2 @@
ALTER TABLE `health`.`ufutx_user_label`
ADD COLUMN `deleted_at` TIMESTAMP NULL DEFAULT NULL comment "删除时间" after `updated_at`

View File

@ -0,0 +1,10 @@
CREATE TABLE `health`.`ufutx_user_label_log` (
`id` INT NOT NULL AUTO_INCREMENT,
`user_id` INT NOT NULL COMMENT "用户id",
`name` VARCHAR(100) NOT NULL COMMENT "名称",
`config` JSON NOT NULL COMMENT "配置信息",
`operate_user_id` INT NOT NULL COMMENT "操作用户id",
`created_at` TIMESTAMP NULL DEFAULT NULL,
`updated_at` TIMESTAMP NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE = InnoDB COMMENT = '用户标签数值记录';