migrate/1744359149_create_ufutx_library_category.up.sql

7 lines
301 B
MySQL
Raw Normal View History

2025-04-14 10:23:54 +08:00
CREATE TABLE `ufutx_library_category`(
`id` BIGINT NOT NULL AUTO_INCREMENT ,
`name` varchar(255) NOT null COMMENT "类名",
`created_at` TIMESTAMP NULL DEFAULT NULL ,
`updated_at` TIMESTAMP NULL DEFAULT NULL ,
PRIMARY KEY (`id`)
) ENGINE = InnoDB COMMENT = '资料库类别表';