加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
sys_auth_user.sql 1.02 KB
一键复制 编辑 原始数据 按行查看 历史
小白杨 提交于 2021-11-01 13:59 . 提交源码
-- ----------------------------
-- 第三方授权表
-- ----------------------------
drop table if exists sys_auth_user;
create table sys_auth_user (
auth_id bigint(20) not null auto_increment comment '授权ID',
uuid varchar(500) not null comment '第三方平台用户唯一ID',
user_id bigint(20) not null comment '系统用户ID',
login_name varchar(30) not null comment '登录账号',
user_name varchar(30) default '' comment '用户昵称',
avatar varchar(500) default '' comment '头像地址',
email varchar(255) default '' comment '用户邮箱',
source varchar(255) default '' comment '用户来源',
create_time datetime comment '创建时间',
primary key (auth_id)
) engine=innodb auto_increment=100 comment = '第三方授权表';
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化