MySQL Create Table SQL
Table Structure: okayapi_ucenter:/tablelist/okayapi_ucenter.html
-- MySQL Table okayapi_ucenter
-- From: OkayAPI.com
CREATE TABLE `okayapi_ucenter` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`uid` int(11) NULL DEFAULT '0' COMMENT '',
`uc_uid` int(11) NULL DEFAULT '0' COMMENT '',
`username` varchar(255) NULL COMMENT '',
`email` varchar(255) NULL COMMENT '',
KEY `uid` (`uid`),
KEY `uc_uid` (`uc_uid`),
KEY `username` (`username`),
KEY `email` (`email`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'UCenter登录';
After replication, you can go to the database to create the database table.
MySQL database table structure design
Displaying 1-4 of 4 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
uid | int(11) | 0 | 是 | 0 | ||
uc_uid | int(11) | 0 | 是 | 0 | ||
username | varchar(255) | 是 | ||||
varchar(255) | 是 |