+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_zheng_ucenter_user_details:/tablelist/okayapi_zheng_ucenter_user_details.html


-- MySQL Table okayapi_zheng_ucenter_user_details
-- From: OkayAPI.com
CREATE TABLE `okayapi_zheng_ucenter_user_details` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `signature` varchar(300) NULL COMMENT '个性签名',
    `real_name` varchar(20) NULL COMMENT '真实姓名',
    `birthday` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '出生日期',
    `question` varchar(100) NULL COMMENT '帐号安全问题',
    `answer` varchar(100) NULL COMMENT '帐号安全答案',
    KEY `signature` (`signature`),
    KEY `real_name` (`real_name`),
    KEY `birthday` (`birthday`),
    KEY `question` (`question`),
    KEY `answer` (`answer`),
    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
signaturevarchar(300)个性签名
real_namevarchar(20)真实姓名
birthdaytimestampCURRENT_TIMESTAMP出生日期CURRENT_TIMESTAMP
questionvarchar(100)帐号安全问题
answervarchar(100)帐号安全答案

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 ↑