修改数据库id_token字段宽度

This commit is contained in:
数据小王子 2024-02-29 10:01:07 +08:00
parent 5b131ad3fd
commit e5ca734018
4 changed files with 15 additions and 2 deletions

View File

@ -1048,7 +1048,7 @@ create table sys_social
union_id varchar(255) default null comment '用户的 unionid',
scope varchar(255) default null comment '授予的权限,部分平台可能没有',
token_type varchar(255) default null comment '个别平台的授权信息,部分平台可能没有',
id_token varchar(255) default null comment 'id token部分平台可能没有',
id_token varchar(2000) default null comment 'id token部分平台可能没有',
mac_algorithm varchar(255) default null comment '小米平台用户的附带属性,部分平台可能没有',
mac_key varchar(255) default null comment '小米平台用户的附带属性,部分平台可能没有',
code varchar(255) default null comment '用户的授权code部分平台可能没有',

View File

@ -57,3 +57,8 @@ UPDATE `sys_post` SET `tenant_id`=1 WHERE `tenant_id`=0;
UPDATE `sys_role` SET `tenant_id`=1 WHERE `tenant_id`=0;
UPDATE `sys_social` SET `tenant_id`=1 WHERE `tenant_id`=0;
UPDATE `sys_user` SET `tenant_id`=1 WHERE `tenant_id`=0;
---- 升级 from V5.1.0 to V5.2.0:
-- 修改数据库id_token字段宽度
ALTER TABLE `sys_social`
CHANGE COLUMN `id_token` `id_token` VARCHAR(2000) NULL DEFAULT NULL COMMENT 'id token部分平台可能没有' COLLATE 'utf8mb4_bin' AFTER `token_type`;

View File

@ -1389,7 +1389,7 @@ create table if not exists sys_social
union_id varchar(255) default null::varchar,
scope varchar(255) default null::varchar,
token_type varchar(255) default null::varchar,
id_token varchar(255) default null::varchar,
id_token varchar(2000) default null::varchar,
mac_algorithm varchar(255) default null::varchar,
mac_key varchar(255) default null::varchar,
code varchar(255) default null::varchar,

View File

@ -115,3 +115,11 @@ UPDATE "public"."sys_post" SET "tenant_id"=1 WHERE "tenant_id"=0;
UPDATE "public"."sys_role" SET "tenant_id"=1 WHERE "tenant_id"=0;
UPDATE "public"."sys_social" SET "tenant_id"=1 WHERE "tenant_id"=0;
UPDATE "public"."sys_user" SET "tenant_id"=1 WHERE "tenant_id"=0;
---- 升级 from V5.1.0 to V5.2.0:
-- 修改数据库id_token字段宽度
ALTER TABLE "sys_social"
ALTER COLUMN "id_token" TYPE VARCHAR(2000),
ALTER COLUMN "id_token" DROP NOT NULL,
ALTER COLUMN "id_token" SET DEFAULT NULL::character varying;
COMMENT ON COLUMN "sys_social"."id_token" IS 'id token部分平台可能没有';