+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_zheng_cms_system:/tablelist/okayapi_zheng_cms_system.html


-- MySQL Table okayapi_zheng_cms_system
-- From: OkayAPI.com
CREATE TABLE `okayapi_zheng_cms_system` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `okayapi_zheng_cms_system_name` varchar(20) NULL COMMENT '系统名称',
    `okayapi_zheng_cms_system_code` varchar(20) NULL COMMENT '别名',
    `description` varchar(300) NULL COMMENT '描述',
    `ctime` bigint(20) NULL COMMENT '创建时间',
    `orders` bigint(20) NULL COMMENT '排序',
    KEY `okayapi_zheng_cms_system_name` (`okayapi_zheng_cms_system_name`),
    KEY `okayapi_zheng_cms_system_code` (`okayapi_zheng_cms_system_code`),
    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_cms_system_namevarchar(20)系统名称
okayapi_zheng_cms_system_codevarchar(20)别名
descriptionvarchar(300)描述
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_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

MySQL Table Design okayapi_zheng_pay_mch

TOP ↑