+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_fie_third_party_user:/tablelist/okayapi_fie_third_party_user.html


-- MySQL Table okayapi_fie_third_party_user
-- From: OkayAPI.com
CREATE TABLE `okayapi_fie_third_party_user` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `user_id` bigint(20) NULL DEFAULT '0' COMMENT '本站用户id',
    `last_login_time` int(10) NULL DEFAULT '0' COMMENT '最后登录时间',
    `expire_time` int(10) NULL DEFAULT '0' COMMENT 'access_token过期时间',
    `create_time` int(10) NULL DEFAULT '0' COMMENT '绑定时间',
    `login_times` int(10) NULL DEFAULT '0' COMMENT '登录次数',
    `okayapi_fie_third_party_user_status` tinyint(3) NULL DEFAULT '1' COMMENT '状态;1:正常;0:禁用',
    `nickname` varchar(50) NULL COMMENT '用户昵称',
    `third_party` varchar(20) NULL COMMENT '第三方惟一码',
    `app_id` varchar(64) NULL COMMENT '第三方应用 id',
    `last_login_ip` varchar(15) NULL COMMENT '最后登录ip',
    `access_token` varchar(512) NULL COMMENT '第三方授权码',
    `openid` varchar(40) NULL COMMENT '第三方用户id',
    `union_id` varchar(64) NULL COMMENT '第三方用户多个产品中的惟一 id,(如:微信平台)',
    `more` text NULL COMMENT '扩展信息',
    KEY `user_id` (`user_id`),
    KEY `last_login_time` (`last_login_time`),
    KEY `expire_time` (`expire_time`),
    KEY `create_time` (`create_time`),
    KEY `login_times` (`login_times`),
    KEY `okayapi_fie_third_party_user_status` (`okayapi_fie_third_party_user_status`),
    KEY `nickname` (`nickname`),
    KEY `third_party` (`third_party`),
    KEY `app_id` (`app_id`),
    KEY `last_login_ip` (`last_login_ip`),
    KEY `access_token` (`access_token`),
    KEY `openid` (`openid`),
    KEY `union_id` (`union_id`),
    KEY `more` (`more`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'fie内容管理-第三方用户表';

After replication, you can go to the database to create the database table.


MySQL database table structure design

Displaying 1-14 of 14 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
user_idbigint(20)0本站用户id0
last_login_timeint(10)0最后登录时间0
expire_timeint(10)0access_token过期时间0
create_timeint(10)0绑定时间0
login_timesint(10)0登录次数0
okayapi_fie_third_party_user_statustinyint(3)1状态;1:正常;0:禁用1
nicknamevarchar(50)用户昵称
third_partyvarchar(20)第三方惟一码
app_idvarchar(64)第三方应用 id
last_login_ipvarchar(15)最后登录ip
access_tokenvarchar(512)第三方授权码
openidvarchar(40)第三方用户id
union_idvarchar(64)第三方用户多个产品中的惟一 id,(如:微信平台)
moretext扩展信息

Guess You Like

MySQL Table Design okayapi_message

MySQL Table Design okayapi_article

MySQL Table Design okayapi_fie_admin_menu

MySQL Table Design okayapi_fie_asset

MySQL Table Design okayapi_fie_auth_access

MySQL Table Design okayapi_fie_auth_rule

MySQL Table Design okayapi_fie_comment

MySQL Table Design okayapi_fie_hook

MySQL Table Design okayapi_fie_hook_plugin

MySQL Table Design okayapi_fie_link

MySQL Table Design okayapi_fie_nav

MySQL Table Design okayapi_fie_nav_menu

MySQL Table Design okayapi_fie_option

MySQL Table Design okayapi_fie_plugin

MySQL Table Design okayapi_fie_portal_category

MySQL Table Design okayapi_fie_portal_category_post

MySQL Table Design okayapi_fie_portal_post

MySQL Table Design okayapi_fie_portal_tag

MySQL Table Design okayapi_fie_portal_tag_post

MySQL Table Design okayapi_fie_recycle_bin

TOP ↑