+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_fl_admin:/tablelist/okayapi_fl_admin.html


-- MySQL Table okayapi_fl_admin
-- From: OkayAPI.com
CREATE TABLE `okayapi_fl_admin` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `role_id` int(11) NOT NULL DEFAULT '0' COMMENT '角色ID',
    `name` varchar(30) NOT NULL COMMENT 'admin888',
    `pwd` char(32) NOT NULL COMMENT 'admin',
    `mobile` varchar(20) NOT NULL COMMENT '手机号',
    `email` varchar(30) NOT NULL COMMENT '邮箱',
    `avatar` varchar(150) NOT NULL COMMENT '头像',
    `status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '用户状态 0:正常; 1:禁用 ;2:未验证',
    `login_time` int(11) NOT NULL DEFAULT '0' COMMENT '登录时间',
    `delete_time` int(11) NOT NULL DEFAULT '0' COMMENT '删除时间',
    KEY `role_id` (`role_id`),
    KEY `name` (`name`),
    KEY `pwd` (`pwd`),
    KEY `mobile` (`mobile`),
    KEY `email` (`email`),
    KEY `avatar` (`avatar`),
    KEY `status` (`status`),
    KEY `login_time` (`login_time`),
    KEY `delete_time` (`delete_time`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'CMS建站系统-管理员表';

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


MySQL database table structure design

Displaying 1-9 of 9 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
role_idint(11)0角色ID0
namevarchar(30)admin888
pwdchar(32)admin
mobilevarchar(20)手机号
emailvarchar(30)邮箱
avatarvarchar(150)头像
statustinyint(1)0用户状态 0:正常; 1:禁用 ;2:未验证0
login_timeint(11)0登录时间0
delete_timeint(11)0删除时间0

Guess You Like

MySQL Table Design okayapi_kite_addons

MySQL Table Design okayapi_kite_auth_role

MySQL Table Design okayapi_kite_auth_rule

MySQL Table Design okayapi_kite_auth_user

MySQL Table Design okayapi_kite_block

MySQL Table Design okayapi_kite_document_category

MySQL Table Design okayapi_kite_document_comments

MySQL Table Design okayapi_kite_document_comments_like

MySQL Table Design okayapi_kite_document_content

MySQL Table Design okayapi_kite_document_content_extra

MySQL Table Design okayapi_kite_document_content_like

MySQL Table Design okayapi_kite_document_field

MySQL Table Design okayapi_kite_document_model

MySQL Table Design okayapi_kite_document_model_field

MySQL Table Design okayapi_kite_feedback

MySQL Table Design okayapi_kite_hooks

MySQL Table Design okayapi_kite_language

MySQL Table Design okayapi_kite_link

MySQL Table Design okayapi_kite_log

MySQL Table Design okayapi_kite_message

TOP ↑