MySQL Create Table SQL
Table Structure: okayapi_zheng_cms_article:/tablelist/okayapi_zheng_cms_article.html
-- MySQL Table okayapi_zheng_cms_article
-- From: OkayAPI.com
CREATE TABLE `okayapi_zheng_cms_article` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`topic_id` int(11) NOT NULL COMMENT '所属专题',
`title` varchar(200) NOT NULL COMMENT '文章标题',
`author` varchar(50) NOT NULL COMMENT '文章原作者',
`fromurl` varchar(300) NOT NULL COMMENT '转载来源网址',
`image` varchar(300) NOT NULL COMMENT '封面图',
`keywords` varchar(100) NOT NULL COMMENT '关键字',
`description` varchar(500) NOT NULL COMMENT '简介',
`okayapi_zheng_cms_article_type` tinyint(4) NOT NULL DEFAULT '1' COMMENT '类型(1:普通,2:热门...)',
`allowcomments` tinyint(4) NOT NULL DEFAULT '1' COMMENT '是否允许评论(0:不允许,1:允许)',
`okayapi_zheng_cms_article_status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '状态(-1:不通过,0未审核,1:通过)',
`content` mediumtext NOT NULL COMMENT '内容',
`user_id` int(10) NOT NULL COMMENT '发布人id',
`readnumber` int(10) NOT NULL DEFAULT '0' COMMENT '阅读数量',
`top` int(11) NOT NULL DEFAULT '0' COMMENT '置顶等级',
`system_id` int(11) NOT NULL COMMENT '所属系统',
`ctime` bigint(20) NOT NULL COMMENT '创建时间',
`orders` bigint(20) NOT NULL COMMENT '排序',
KEY `topic_id` (`topic_id`),
KEY `title` (`title`),
KEY `author` (`author`),
KEY `fromurl` (`fromurl`),
KEY `image` (`image`),
KEY `keywords` (`keywords`),
KEY `description` (`description`),
KEY `okayapi_zheng_cms_article_type` (`okayapi_zheng_cms_article_type`),
KEY `allowcomments` (`allowcomments`),
KEY `okayapi_zheng_cms_article_status` (`okayapi_zheng_cms_article_status`),
KEY `content` (`content`),
KEY `user_id` (`user_id`),
KEY `readnumber` (`readnumber`),
KEY `top` (`top`),
KEY `system_id` (`system_id`),
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-17 of 17 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
topic_id | int(11) | 是 | 所属专题 | |||
title | varchar(200) | 否 | 文章标题 | |||
author | varchar(50) | 是 | 文章原作者 | |||
fromurl | varchar(300) | 是 | 转载来源网址 | |||
image | varchar(300) | 是 | 封面图 | |||
keywords | varchar(100) | 是 | 关键字 | |||
description | varchar(500) | 是 | 简介 | |||
okayapi_zheng_cms_article_type | tinyint(4) | 1 | 否 | 类型(1:普通,2:热门...) | 1 | |
allowcomments | tinyint(4) | 1 | 否 | 是否允许评论(0:不允许,1:允许) | 1 | |
okayapi_zheng_cms_article_status | tinyint(4) | 1 | 否 | 状态(-1:不通过,0未审核,1:通过) | 1 | |
content | mediumtext | 是 | 内容 | |||
user_id | int(10) | 否 | 发布人id | |||
readnumber | int(10) | 0 | 否 | 阅读数量 | 0 | |
top | int(11) | 0 | 否 | 置顶等级 | 0 | |
system_id | int(11) | 是 | 所属系统 | |||
ctime | bigint(20) | 否 | 创建时间 | |||
orders | bigint(20) | 否 | 排序 | Normal Index |