+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_travel_users:/tablelist/okayapi_travel_users.html


-- MySQL Table okayapi_travel_users
-- From: OkayAPI.com
CREATE TABLE `okayapi_travel_users` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `username` varchar(50) NOT NULL COMMENT '',
    `okayapi_travel_users_password` varchar(50) NOT NULL COMMENT '',
    `group_id` int(2) NOT NULL COMMENT '',
    `active` int(1) NOT NULL COMMENT '',
    `updated` bigint(12) NOT NULL COMMENT '',
    `okayapi_travel_users_name` varchar(50) NOT NULL COMMENT '姓名',
    `title` varchar(100) NOT NULL COMMENT '职位 ',
    KEY `username` (`username`),
    KEY `okayapi_travel_users_password` (`okayapi_travel_users_password`),
    KEY `group_id` (`group_id`),
    KEY `active` (`active`),
    KEY `updated` (`updated`),
    KEY `okayapi_travel_users_name` (`okayapi_travel_users_name`),
    KEY `title` (`title`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '旅游售票-用户表';

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


MySQL database table structure design

Displaying 1-7 of 7 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
usernamevarchar(50)
okayapi_travel_users_passwordvarchar(50)
group_idint(2)
activeint(1)
updatedbigint(12)
okayapi_travel_users_namevarchar(50)姓名
titlevarchar(100)职位

Guess You Like

MySQL Table Design okayapi_opentrip_travel_admin

MySQL Table Design okayapi_opentrip_travel_category

MySQL Table Design okayapi_opentrip_travel_order

MySQL Table Design okayapi_opentrip_travel_product

MySQL Table Design okayapi_opentrip_travel_shopcart

MySQL Table Design okayapi_opentrip_travel_user

MySQL Table Design okayapi_travel_agents

MySQL Table Design okayapi_travel_agent_users

MySQL Table Design okayapi_travel_categories

MySQL Table Design okayapi_travel_depots

MySQL Table Design okayapi_travel_depot_annuals

MySQL Table Design okayapi_travel_depot_logs

MySQL Table Design okayapi_travel_depot_staffs

MySQL Table Design okayapi_travel_depot_vouchers

MySQL Table Design okayapi_travel_devices

MySQL Table Design okayapi_travel_exist_statistics

MySQL Table Design okayapi_travel_features

MySQL Table Design okayapi_travel_groups

MySQL Table Design okayapi_travel_orders

MySQL Table Design okayapi_travel_staff_exchanges

TOP ↑