create_ufutx_s2_user_tag

This commit is contained in:
tian 2025-12-30 14:23:38 +08:00
parent 4848313893
commit 6ec4e8f652

View File

@ -0,0 +1 @@
CREATE TABLE `health`.`ufutx_s2_user_tag` ( `id` BIGINT NOT NULL AUTO_INCREMENT , `user_id` BIGINT NOT NULL COMMENT '用户id' , `tag_id` BIGINT NOT NULL COMMENT '标签id' , `created_at` TIMESTAMP NULL DEFAULT NULL , `updated_at` TIMESTAMP NULL DEFAULT NULL , `deleted_at` TIMESTAMP NULL DEFAULT NULL , PRIMARY KEY (`id`)) ENGINE = InnoDB COMMENT = '用户标签表';