+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_landi_user:/tablelist/okayapi_landi_user.html


-- MySQL Table okayapi_landi_user
-- From: OkayAPI.com
CREATE TABLE `okayapi_landi_user` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `username` varchar(64) NULL COMMENT '',
    `passwd` varchar(64) NULL COMMENT '',
    `okayapi_landi_user_name` varchar(64) NULL COMMENT '',
    `num` varchar(64) NULL COMMENT '',
    `depart` varchar(64) NULL COMMENT '',
    `role` int(10) NULL DEFAULT '0' COMMENT '',
    `auth` int(10) NULL DEFAULT '0' COMMENT '',
    `ctime` date NULL COMMENT '',
    `ltime` date NULL COMMENT '',
    `state` int(10) NULL DEFAULT '1' COMMENT '',
    `reset_passwd` tinyint(3) NULL DEFAULT '0' COMMENT '是否修改过密码(初始为0)',
    KEY `username` (`username`),
    KEY `passwd` (`passwd`),
    KEY `okayapi_landi_user_name` (`okayapi_landi_user_name`),
    KEY `num` (`num`),
    KEY `depart` (`depart`),
    KEY `role` (`role`),
    KEY `auth` (`auth`),
    KEY `ctime` (`ctime`),
    KEY `ltime` (`ltime`),
    KEY `state` (`state`),
    KEY `reset_passwd` (`reset_passwd`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'LD酒店租房管理-会员';

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


MySQL database table structure design

Displaying 1-11 of 11 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
usernamevarchar(64)Unique Index
passwdvarchar(64)
okayapi_landi_user_namevarchar(64)
numvarchar(64)
departvarchar(64)
roleint(10)00
authint(10)00
ctimedate
ltimedate
stateint(10)11
reset_passwdtinyint(3)0是否修改过密码(初始为0)0

Guess You Like

MySQL Table Design okayapi_landi_agent_purchase

MySQL Table Design okayapi_landi_contract_income

MySQL Table Design okayapi_landi_cost_le

MySQL Table Design okayapi_landi_daily_service

MySQL Table Design okayapi_landi_diary_reminder

MySQL Table Design okayapi_landi_drinking_water

MySQL Table Design okayapi_landi_emergency_problem

MySQL Table Design okayapi_landi_fac_sta

MySQL Table Design okayapi_landi_flight_picking

MySQL Table Design okayapi_landi_grocery_item

MySQL Table Design okayapi_landi_grocery_running

MySQL Table Design okayapi_landi_guest

MySQL Table Design okayapi_landi_guest_balance

MySQL Table Design okayapi_landi_guest_service

MySQL Table Design okayapi_landi_host

MySQL Table Design okayapi_landi_income

MySQL Table Design okayapi_landi_intern

MySQL Table Design okayapi_landi_invoice

MySQL Table Design okayapi_landi_invoice_detail

MySQL Table Design okayapi_landi_laundry

TOP ↑