Explorar el Código

update 调整 OSS 表字段内容长度

(cherry picked from commit c6fe27b0404301194f15894ff94ac512a13fb309)
疯狂的狮子li hace 3 años
padre
commit
c8720b1524
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. 3 3
      script/sql/ry_20210908.sql

+ 3 - 3
script/sql/ry_20210908.sql

@@ -644,10 +644,10 @@ create table gen_table_column (
 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_name       varchar(255) not null default ''        comment '文件名',
+  original_name   varchar(255) not null default ''        comment '原名',
   file_suffix     varchar(10)  not null default ''        comment '文件后缀名',
-  url              varchar(200) not null                   comment 'URL地址',
+  url              varchar(500) not null                   comment 'URL地址',
   create_time     datetime              default null      comment '创建时间',
   create_by       varchar(64)           default ''        comment '上传人',
   update_time     datetime              default null      comment '更新时间',