+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_zheng_upms_system:/tablelist/okayapi_zheng_upms_system.html


-- MySQL Table okayapi_zheng_upms_system
-- From: OkayAPI.com
CREATE TABLE `okayapi_zheng_upms_system` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `icon` varchar(50) NULL COMMENT '图标',
    `banner` varchar(150) NULL COMMENT '背景',
    `theme` varchar(50) NULL COMMENT '主题',
    `basepath` varchar(100) NULL COMMENT '根目录',
    `okayapi_zheng_upms_system_status` tinyint(4) NULL COMMENT '状态(-1:黑名单,1:正常)',
    `okayapi_zheng_upms_system_name` varchar(20) NULL COMMENT '系统名称',
    `title` varchar(20) NULL COMMENT '系统标题',
    `description` varchar(300) NULL COMMENT '系统描述',
    `ctime` bigint(20) NULL COMMENT '创建时间',
    `orders` bigint(20) NULL COMMENT '排序',
    KEY `icon` (`icon`),
    KEY `banner` (`banner`),
    KEY `theme` (`theme`),
    KEY `basepath` (`basepath`),
    KEY `okayapi_zheng_upms_system_status` (`okayapi_zheng_upms_system_status`),
    KEY `okayapi_zheng_upms_system_name` (`okayapi_zheng_upms_system_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-10 of 10 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
iconvarchar(50)图标
bannervarchar(150)背景
themevarchar(50)主题
basepathvarchar(100)根目录
okayapi_zheng_upms_system_statustinyint(4)状态(-1:黑名单,1:正常)
okayapi_zheng_upms_system_namevarchar(20)系统名称
titlevarchar(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_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 ↑