mirror of
https://github.com/dromara/RuoYi-Vue-Plus.git
synced 2025-09-24 07:19:46 +08:00
update 编写 Minio 实现 调整OSS模块结构
This commit is contained in:
@ -5,12 +5,13 @@ drop table if exists sys_oss;
|
||||
create table sys_oss (
|
||||
oss_id bigint(20) not null auto_increment comment '云存储主键',
|
||||
file_name varchar(64) not null default '' comment '文件名',
|
||||
original_name varchar(64) not null default '' comment '原名',
|
||||
file_suffix varchar(10) not null default '' comment '文件后缀名',
|
||||
url varchar(200) not null comment 'URL地址',
|
||||
create_time datetime default null comment '创建时间',
|
||||
create_by varchar(64) not null default '' comment '上传人',
|
||||
create_by varchar(64) default '' comment '上传人',
|
||||
update_time datetime default null comment '更新时间',
|
||||
update_by varchar(64) not null default '' comment '更新人',
|
||||
update_by varchar(64) default '' comment '更新人',
|
||||
service varchar(10) not null default 'minio' comment '服务商',
|
||||
primary key (oss_id)
|
||||
) engine=innodb comment ='OSS云存储表';
|
||||
|
Reference in New Issue
Block a user