+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_fl_article:/tablelist/okayapi_fl_article.html


-- MySQL Table okayapi_fl_article
-- From: OkayAPI.com
CREATE TABLE `okayapi_fl_article` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `type_id` int(11) NOT NULL COMMENT '栏目ID',
    `tuijian` tinyint(1) NOT NULL DEFAULT '0' COMMENT '推荐等级',
    `click` int(11) NOT NULL DEFAULT '0' COMMENT '点击量',
    `title` varchar(150) NOT NULL COMMENT '标题',
    `content` mediumtext NOT NULL COMMENT '内容',
    `writer` varchar(20) NOT NULL COMMENT '作者',
    `source` varchar(30) NOT NULL COMMENT '来源',
    `litpic` varchar(150) NOT NULL COMMENT '缩略图',
    `keywords` varchar(60) NOT NULL COMMENT '关键词',
    `seotitle` varchar(150) NOT NULL COMMENT 'SEO标题',
    `description` varchar(250) NOT NULL COMMENT '描述',
    `status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0正常,1未审核',
    `type_id2` int(11) NOT NULL DEFAULT '0' COMMENT '副栏目ID',
    `user_id` int(11) NOT NULL DEFAULT '0' COMMENT '是谁发布的',
    `shop_id` int(11) NOT NULL DEFAULT '0' COMMENT '店铺ID',
    `delete_time` int(11) NOT NULL DEFAULT '0' COMMENT '是否删除,0未删除',
    KEY `type_id` (`type_id`),
    KEY `tuijian` (`tuijian`),
    KEY `click` (`click`),
    KEY `title` (`title`),
    KEY `content` (`content`),
    KEY `writer` (`writer`),
    KEY `source` (`source`),
    KEY `litpic` (`litpic`),
    KEY `keywords` (`keywords`),
    KEY `seotitle` (`seotitle`),
    KEY `description` (`description`),
    KEY `status` (`status`),
    KEY `type_id2` (`type_id2`),
    KEY `user_id` (`user_id`),
    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-16 of 16 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
type_idint(11)栏目ID
tuijiantinyint(1)0推荐等级0
clickint(11)0点击量0
titlevarchar(150)标题
contentmediumtext内容
writervarchar(20)作者
sourcevarchar(30)来源
litpicvarchar(150)缩略图
keywordsvarchar(60)关键词
seotitlevarchar(150)SEO标题
descriptionvarchar(250)描述
statustinyint(1)00正常,1未审核0
type_id2int(11)0副栏目ID0
user_idint(11)0是谁发布的0
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 ↑