migrate/1750989232_create_article_category.up.sql

7 lines
341 B
MySQL
Raw Permalink Normal View History

2025-06-27 16:29:15 +08:00
CREATE TABLE `ufutx_article_category`(
`id` bigint(20) UNSIGNED PRIMARY KEY NOT NULL AUTO_INCREMENT,
`name` varchar(191) NOT NULL comment "名称",
`sort` integer(11) default 0 comment "排序",
`created_at` timestamp null default null,
`updated_at` timestamp null default null
) ENGINE = InnoDB COMMENT = '文章分类';