+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_zheng_upms_role:/tablelist/okayapi_zheng_upms_role.html


-- MySQL Table okayapi_zheng_upms_role
-- From: OkayAPI.com
CREATE TABLE `okayapi_zheng_upms_role` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `okayapi_zheng_upms_role_name` varchar(20) NOT NULL COMMENT '角色名称',
    `title` varchar(20) NOT NULL COMMENT '角色标题',
    `description` varchar(1000) NOT NULL COMMENT '角色描述',
    `ctime` bigint(20) NOT NULL COMMENT '创建时间',
    `orders` bigint(20) NOT NULL COMMENT '排序',
    KEY `okayapi_zheng_upms_role_name` (`okayapi_zheng_upms_role_name`),
    KEY `title` (`title`),
    KEY `description` (`description`),
    KEY `ctime` (`ctime`),
    KEY `orders` (`orders`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'zheng敏捷开发-角色';

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
okayapi_zheng_upms_role_namevarchar(20)角色名称
titlevarchar(20)角色标题
descriptionvarchar(1000)角色描述
ctimebigint(20)创建时间
ordersbigint(20)排序

Guess You Like

MySQL Table Design okayapi_logs

MySQL Table Design okayapi_app_version

MySQL Table Design okayapi_tea

MySQL Table Design okayapi_tea_swiper

MySQL Table Design okayapi_tea_moment

MySQL Table Design okayapi_tea_order

MySQL Table Design okayapi_tea_user

MySQL Table Design okayapi_tea_shopcar

MySQL Table Design okayapi_zheng_cms_article

MySQL Table Design okayapi_zheng_cms_article_category

MySQL Table Design okayapi_zheng_cms_article_tag

MySQL Table Design okayapi_zheng_cms_category

MySQL Table Design okayapi_zheng_cms_comment

MySQL Table Design okayapi_zheng_cms_page

MySQL Table Design okayapi_zheng_cms_setting

MySQL Table Design okayapi_zheng_cms_system

MySQL Table Design okayapi_zheng_cms_tag

MySQL Table Design okayapi_zheng_cms_topic

MySQL Table Design okayapi_zheng_pay_in_order

MySQL Table Design okayapi_zheng_pay_in_order_detail

TOP ↑