user log
This commit is contained in:
parent
33904da059
commit
bfb17aecd6
2
1779773785_table_dma_symptom_add_config.up.sql
Normal file
2
1779773785_table_dma_symptom_add_config.up.sql
Normal file
@ -0,0 +1,2 @@
|
||||
ALTER TABLE `health`.`ufutx_dma_symptom`
|
||||
ADD COLUMN `config` JSON DEFAULT NULL comment "配置信息" after `title`
|
||||
3
1779773786_table_label_add_config.up.sql
Normal file
3
1779773786_table_label_add_config.up.sql
Normal 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`
|
||||
2
1779773787_table_user_label_add_deleted_at.up.sql
Normal file
2
1779773787_table_user_label_add_deleted_at.up.sql
Normal file
@ -0,0 +1,2 @@
|
||||
ALTER TABLE `health`.`ufutx_user_label`
|
||||
ADD COLUMN `deleted_at` TIMESTAMP NULL DEFAULT NULL comment "删除时间" after `updated_at`
|
||||
10
1779773788_create_user_label_log.up.sql
Normal file
10
1779773788_create_user_label_log.up.sql
Normal 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 = '用户标签数值记录';
|
||||
Loading…
Reference in New Issue
Block a user