12 lines
626 B
MySQL
12 lines
626 B
MySQL
|
create TABLE `minio_file_info` (
|
||
|
`id` bigint NOT NULL AUTO_INCREMENT comment '主键',
|
||
|
`title` varchar(255) DEFAULT NULL comment '文件展示名称',
|
||
|
`type` varchar(255) DEFAULT NULL comment '文件类型',
|
||
|
`file_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL comment '存放路径',
|
||
|
`create_time` datetime DEFAULT NULL comment '创建时间',
|
||
|
`creator` bigint DEFAULT NULL comment '创建者',
|
||
|
`status` int DEFAULT NULL comment '状态',
|
||
|
PRIMARY KEY (`id`),
|
||
|
KEY `type` (`type`),
|
||
|
KEY `status` (`status`)
|
||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|