+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_travel_features:/tablelist/okayapi_travel_features.html


-- MySQL Table okayapi_travel_features
-- From: OkayAPI.com
CREATE TABLE `okayapi_travel_features` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `okayapi_travel_features_name` varchar(200) NOT NULL COMMENT '功能名',
    `alias` varchar(32) NOT NULL COMMENT '',
    `root_id` int(3) NOT NULL DEFAULT '0' COMMENT '上级ID',
    KEY `okayapi_travel_features_name` (`okayapi_travel_features_name`),
    KEY `alias` (`alias`),
    KEY `root_id` (`root_id`),
    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-3 of 3 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
okayapi_travel_features_namevarchar(200)功能名
aliasvarchar(32)
root_idint(3)0上级ID0

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_groups

MySQL Table Design okayapi_travel_orders

MySQL Table Design okayapi_travel_staff_exchanges

MySQL Table Design okayapi_travel_users

TOP ↑