ソースを参照

update 优化 更改 sys_oss_config 表注释 避免误解

疯狂的狮子li 3 年 前
コミット
bea96cd9d0
3 ファイル変更3 行追加3 行削除
  1. 1 1
      sql/oracle/oracle_ry_cloud.sql
  2. 1 1
      sql/postgres/postgres_ry_cloud.sql
  3. 1 1
      sql/ry-cloud.sql

+ 1 - 1
sql/oracle/oracle_ry_cloud.sql

@@ -934,7 +934,7 @@ comment on column sys_oss_config.domain is '自定义域名';
 comment on column sys_oss_config.is_https is '是否https(Y=是,N=否)';
 comment on column sys_oss_config.region is '域';
 comment on column sys_oss_config.access_policy is '桶权限类型(0=private 1=public 2=custom)';
-comment on column sys_oss_config.status is '状态(0=正常,1=停用)';
+comment on column sys_oss_config.status is '是否默认(0=是,1=否)';
 comment on column sys_oss_config.ext1 is '扩展字段';
 comment on column sys_oss_config.remark is '备注';
 comment on column sys_oss_config.create_by is '创建者';

+ 1 - 1
sql/postgres/postgres_ry_cloud.sql

@@ -950,7 +950,7 @@ comment on column sys_oss_config.domain is '自定义域名';
 comment on column sys_oss_config.is_https is '是否https(Y=是,N=否)';
 comment on column sys_oss_config.region is '域';
 comment on column sys_oss_config.access_policy is '桶权限类型(0=private 1=public 2=custom)';
-comment on column sys_oss_config.status is '状态(0=正常,1=停用)';
+comment on column sys_oss_config.status is '是否默认(0=是,1=否)';
 comment on column sys_oss_config.ext1 is '扩展字段';
 comment on column sys_oss_config.create_by is '创建者';
 comment on column sys_oss_config.create_time is '创建时间';

+ 1 - 1
sql/ry-cloud.sql

@@ -616,7 +616,7 @@ create table sys_oss_config (
   is_https         char(1)           default 'N'                comment '是否https(Y=是,N=否)',
   region           varchar(255)      default ''                 comment '域',
   access_policy    char(1)           not null   default '1'     comment '桶权限类型(0=private 1=public 2=custom)',
-  status           char(1)           default '1'                comment '状态(0=正常,1=停用)',
+  status           char(1)           default '1'                comment '是否默认(0=是,1=否)',
   ext1             varchar(255)      default ''                 comment '扩展字段',
   create_by       varchar(64)        default ''                 comment '创建者',
   create_time     datetime           default null               comment '创建时间',