add 新增 对接 gitea 三方单点登录

This commit is contained in:
疯狂的狮子Li
2025-05-12 12:58:57 +08:00
parent 74df9e2bc0
commit 2a413d13df
7 changed files with 157 additions and 6 deletions

View File

@@ -13,9 +13,9 @@ create table sys_social
nick_name varchar(30) default '' comment '用户昵称',
email varchar(255) default '' comment '用户邮箱',
avatar varchar(500) default '' comment '头像地址',
access_token varchar(255) not null comment '用户的授权令牌',
access_token varchar(2000) not null comment '用户的授权令牌',
expire_in int default null comment '用户的授权令牌的有效期,部分平台可能没有',
refresh_token varchar(255) default null comment '刷新令牌,部分平台可能没有',
refresh_token varchar(2000) default null comment '刷新令牌,部分平台可能没有',
access_code varchar(255) default null comment '平台的授权信息,部分平台可能没有',
union_id varchar(255) default null comment '用户的 unionid',
scope varchar(255) default null comment '授予的权限,部分平台可能没有',