Compare commits

...

2 Commits

Author SHA1 Message Date
1815c00022 Merge branch 'main' of https://gitea.ufutx.net/ufutx/migrate 2025-09-11 15:15:21 +08:00
7e3b317a9c create_ufutx_s2_bp_type 2025-09-11 15:15:14 +08:00

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 = '福分类型表';