mirror of https://gitee.com/karson/fastadmin.git
18 lines
1.1 KiB
SQL
18 lines
1.1 KiB
SQL
|
|
CREATE TABLE IF NOT EXISTS `__PREFIX__third` (
|
|
`id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID',
|
|
`user_id` int(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT '会员ID',
|
|
`platform` enum('weibo','wechat','qq') NOT NULL COMMENT '第三方应用',
|
|
`openid` varchar(50) NOT NULL DEFAULT '' COMMENT '第三方唯一ID',
|
|
`openname` varchar(50) NOT NULL DEFAULT '' COMMENT '第三方会员昵称',
|
|
`access_token` varchar(100) NOT NULL DEFAULT '',
|
|
`refresh_token` varchar(100) NOT NULL DEFAULT '',
|
|
`expires_in` int(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT '有效期',
|
|
`createtime` int(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT '创建时间',
|
|
`updatetime` int(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT '更新时间',
|
|
`logintime` int(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT '登录时间',
|
|
`expiretime` int(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT '过期时间',
|
|
PRIMARY KEY (`id`),
|
|
UNIQUE KEY `platform` (`platform`,`openid`),
|
|
KEY `user_id` (`user_id`,`platform`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='第三方登录表' ROW_FORMAT=DYNAMIC; |