+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_fl_article_type:/tablelist/okayapi_fl_article_type.html


-- MySQL Table okayapi_fl_article_type
-- From: OkayAPI.com
CREATE TABLE `okayapi_fl_article_type` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `parent_id` int(11) NOT NULL DEFAULT '0' COMMENT '父级栏目ID',
    `name` varchar(30) NOT NULL COMMENT '栏目名称',
    `seotitle` varchar(150) NOT NULL COMMENT 'SEO标题',
    `keywords` varchar(60) NOT NULL COMMENT '关键词',
    `description` varchar(250) NOT NULL COMMENT '描述',
    `content` mediumtext NOT NULL COMMENT '内容',
    `filename` varchar(30) NOT NULL COMMENT '别名',
    `templist` varchar(50) NOT NULL COMMENT '列表页模板',
    `temparticle` varchar(50) NOT NULL COMMENT '文章页模板',
    `litpic` varchar(150) NOT NULL COMMENT '封面或缩略图',
    `is_part` tinyint(1) NOT NULL DEFAULT '0' COMMENT '栏目属性:0列表栏目(允许发布文档),1频道封面(不允许发布文档)',
    `listorder` int(11) NOT NULL DEFAULT '50' COMMENT '排序',
    `shop_id` int(11) NOT NULL DEFAULT '0' COMMENT '店铺ID',
    `delete_time` int(11) NOT NULL DEFAULT '0' COMMENT '是否删除,0未删除',
    KEY `parent_id` (`parent_id`),
    KEY `name` (`name`),
    KEY `seotitle` (`seotitle`),
    KEY `keywords` (`keywords`),
    KEY `description` (`description`),
    KEY `content` (`content`),
    KEY `filename` (`filename`),
    KEY `templist` (`templist`),
    KEY `temparticle` (`temparticle`),
    KEY `litpic` (`litpic`),
    KEY `is_part` (`is_part`),
    KEY `listorder` (`listorder`),
    KEY `shop_id` (`shop_id`),
    KEY `delete_time` (`delete_time`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'CMS建站系统-文章分类表';

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


MySQL database table structure design

Displaying 1-14 of 14 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
parent_idint(11)0父级栏目ID0
namevarchar(30)栏目名称
seotitlevarchar(150)SEO标题
keywordsvarchar(60)关键词
descriptionvarchar(250)描述
contentmediumtext内容
filenamevarchar(30)别名
templistvarchar(50)列表页模板
temparticlevarchar(50)文章页模板
litpicvarchar(150)封面或缩略图
is_parttinyint(1)0栏目属性:0列表栏目(允许发布文档),1频道封面(不允许发布文档)0
listorderint(11)50排序50
shop_idint(11)0店铺ID0
delete_timeint(11)0是否删除,0未删除0

Guess You Like

MySQL Table Design okayapi_kite_addons

MySQL Table Design okayapi_kite_auth_role

MySQL Table Design okayapi_kite_auth_rule

MySQL Table Design okayapi_kite_auth_user

MySQL Table Design okayapi_kite_block

MySQL Table Design okayapi_kite_document_category

MySQL Table Design okayapi_kite_document_comments

MySQL Table Design okayapi_kite_document_comments_like

MySQL Table Design okayapi_kite_document_content

MySQL Table Design okayapi_kite_document_content_extra

MySQL Table Design okayapi_kite_document_content_like

MySQL Table Design okayapi_kite_document_field

MySQL Table Design okayapi_kite_document_model

MySQL Table Design okayapi_kite_document_model_field

MySQL Table Design okayapi_kite_feedback

MySQL Table Design okayapi_kite_hooks

MySQL Table Design okayapi_kite_language

MySQL Table Design okayapi_kite_link

MySQL Table Design okayapi_kite_log

MySQL Table Design okayapi_kite_message

TOP ↑