update 将所有 云存储字样 改为 对象存储 避免误解

This commit is contained in:
疯狂的狮子li
2021-09-10 10:51:40 +08:00
parent 5bb7b0dda5
commit c1c6c1cf30
21 changed files with 77 additions and 77 deletions

View File

@@ -1,9 +1,9 @@
-- ----------------------------
-- OSS存储表
-- OSS对象存储表
-- ----------------------------
drop table if exists sys_oss;
create table sys_oss (
oss_id bigint(20) not null auto_increment comment '存储主键',
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 '文件后缀名',
@@ -14,10 +14,10 @@ create table sys_oss (
update_by varchar(64) default '' comment '更新人',
service varchar(10) not null default 'minio' comment '服务商',
primary key (oss_id)
) engine=innodb comment ='OSS存储表';
) engine=innodb comment ='OSS对象存储表';
-- ----------------------------
-- OSS存储动态配置表
-- OSS对象存储动态配置表
-- ----------------------------
drop table if exists sys_oss_config;
create table sys_oss_config (
@@ -38,7 +38,7 @@ create table sys_oss_config (
update_time datetime default null comment '更新时间',
remark varchar(500) default null comment '备注',
primary key (oss_config_id)
) engine=innodb comment='存储配置表';
) engine=innodb comment='对象存储配置表';
insert into sys_config values(11, 'OSS预览列表资源开关', 'sys.oss.previewListResource', 'true', 'Y', 'admin', sysdate(), '', null, 'true:开启, false:关闭');