+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_zheng_ucenter_user_oauth:/tablelist/okayapi_zheng_ucenter_user_oauth.html


-- MySQL Table okayapi_zheng_ucenter_user_oauth
-- From: OkayAPI.com
CREATE TABLE `okayapi_zheng_ucenter_user_oauth` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `user_id` int(10) NOT NULL COMMENT '帐号编号',
    `oauth_id` int(10) NOT NULL COMMENT '认证方式编号',
    `open_id` varbinary(50) NOT NULL COMMENT '第三方ID',
    `okayapi_zheng_ucenter_user_oauth_status` tinyint(4) NOT NULL COMMENT '绑定状态(0:解绑,1:绑定)',
    `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
    KEY `user_id` (`user_id`),
    KEY `oauth_id` (`oauth_id`),
    KEY `open_id` (`open_id`),
    KEY `okayapi_zheng_ucenter_user_oauth_status` (`okayapi_zheng_ucenter_user_oauth_status`),
    KEY `create_time` (`create_time`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'zheng敏捷开发-用户认证方式表';

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


MySQL database table structure design

Displaying 1-5 of 5 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
user_idint(10)帐号编号Normal Index
oauth_idint(10)认证方式编号Normal Index
open_idvarbinary(50)第三方ID
okayapi_zheng_ucenter_user_oauth_statustinyint(4)绑定状态(0:解绑,1:绑定)
create_timetimestampCURRENT_TIMESTAMP创建时间CURRENT_TIMESTAMP

Guess You Like

MySQL Table Design okayapi_logs

MySQL Table Design okayapi_app_version

MySQL Table Design okayapi_tea

MySQL Table Design okayapi_tea_swiper

MySQL Table Design okayapi_tea_moment

MySQL Table Design okayapi_tea_order

MySQL Table Design okayapi_tea_user

MySQL Table Design okayapi_tea_shopcar

MySQL Table Design okayapi_zheng_cms_article

MySQL Table Design okayapi_zheng_cms_article_category

MySQL Table Design okayapi_zheng_cms_article_tag

MySQL Table Design okayapi_zheng_cms_category

MySQL Table Design okayapi_zheng_cms_comment

MySQL Table Design okayapi_zheng_cms_page

MySQL Table Design okayapi_zheng_cms_setting

MySQL Table Design okayapi_zheng_cms_system

MySQL Table Design okayapi_zheng_cms_tag

MySQL Table Design okayapi_zheng_cms_topic

MySQL Table Design okayapi_zheng_pay_in_order

MySQL Table Design okayapi_zheng_pay_in_order_detail

TOP ↑