+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_xwx_admin:/tablelist/okayapi_xwx_admin.html


-- MySQL Table okayapi_xwx_admin
-- From: OkayAPI.com
CREATE TABLE `okayapi_xwx_admin` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `username` char(32) NULL COMMENT '',
    `okayapi_xwx_admin_password` char(32) NULL COMMENT '',
    `create_time` int(11) NULL DEFAULT '0' COMMENT '',
    `last_login_time` int(11) NULL DEFAULT '0' COMMENT '',
    `last_login_ip` varchar(100) NULL COMMENT '',
    KEY `username` (`username`),
    KEY `okayapi_xwx_admin_password` (`okayapi_xwx_admin_password`),
    KEY `create_time` (`create_time`),
    KEY `last_login_time` (`last_login_time`),
    KEY `last_login_ip` (`last_login_ip`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'xiaoshuo小说-管理员';

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
usernamechar(32)Unique Index
okayapi_xwx_admin_passwordchar(32)
create_timeint(11)00
last_login_timeint(11)00
last_login_ipvarchar(100)

Guess You Like

MySQL Table Design okayapi_xwx_author

MySQL Table Design okayapi_xwx_banner

MySQL Table Design okayapi_xwx_book

MySQL Table Design okayapi_xwx_category

MySQL Table Design okayapi_xwx_chapter

MySQL Table Design okayapi_xwx_tag

MySQL Table Design okayapi_xwx_friendship_link

MySQL Table Design okayapi_jieqi_system_adminmenu

MySQL Table Design okayapi_jieqi_system_blockconfigs

MySQL Table Design okayapi_jieqi_system_blocks

MySQL Table Design okayapi_jieqi_system_configs

MySQL Table Design okayapi_jieqi_system_defaultmenu

MySQL Table Design okayapi_jieqi_system_friends

MySQL Table Design okayapi_jieqi_system_groups

MySQL Table Design okayapi_jieqi_system_honors

MySQL Table Design okayapi_jieqi_system_logs

MySQL Table Design okayapi_jieqi_system_mainmenu

MySQL Table Design okayapi_jieqi_system_mblock

MySQL Table Design okayapi_jieqi_system_message

MySQL Table Design okayapi_jieqi_system_modules

TOP ↑