create_ufutx_s2_bp_type

This commit is contained in:
tian 2025-09-11 15:15:14 +08:00
parent 42dfcd989f
commit 7e3b317a9c

View File

@ -0,0 +1,8 @@
CREATE TABLE `health`.`ufutx_s2_bp_type` (
`id` INT NOT NULL AUTO_INCREMENT ,
`type_id` INT NOT NULL COMMENT '类型id' ,
`intro` VARCHAR(1024) NOT NULL COMMENT '简要说明' ,
`created_at` TIMESTAMP NULL DEFAULT NULL ,
`updated_at` TIMESTAMP NULL DEFAULT NULL ,
PRIMARY KEY (`id`)
) ENGINE = InnoDB COMMENT = '福分类型表';