MySQL Create Table SQL
Table Structure: okayapi_zheng_cms_comment:/tablelist/okayapi_zheng_cms_comment.html
-- MySQL Table okayapi_zheng_cms_comment
-- From: OkayAPI.com
CREATE TABLE `okayapi_zheng_cms_comment` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) NOT NULL COMMENT '回复楼中楼编号回复楼中楼编号',
`article_id` int(10) NOT NULL COMMENT '文章编号',
`user_id` int(10) NOT NULL COMMENT '用户编号',
`content` text NOT NULL COMMENT '评论内容',
`okayapi_zheng_cms_comment_status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '状态(-1:不通过,0:未审核,1:通过)',
`ip` varchar(30) NOT NULL COMMENT '评论人ip地址',
`agent` varchar(200) NOT NULL COMMENT '评论人终端信息',
`system_id` int(11) NOT NULL COMMENT '所属系统',
`ctime` bigint(20) NOT NULL COMMENT '创建时间',
KEY `pid` (`pid`),
KEY `article_id` (`article_id`),
KEY `user_id` (`user_id`),
KEY `content` (`content`),
KEY `okayapi_zheng_cms_comment_status` (`okayapi_zheng_cms_comment_status`),
KEY `ip` (`ip`),
KEY `agent` (`agent`),
KEY `system_id` (`system_id`),
KEY `ctime` (`ctime`),
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-9 of 9 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
pid | int(10) | 是 | 回复楼中楼编号回复楼中楼编号 | |||
article_id | int(10) | 否 | 文章编号 | Normal Index | ||
user_id | int(10) | 否 | 用户编号 | |||
content | text | 否 | 评论内容 | |||
okayapi_zheng_cms_comment_status | tinyint(4) | 1 | 否 | 状态(-1:不通过,0:未审核,1:通过) | 1 | |
ip | varchar(30) | 是 | 评论人ip地址 | |||
agent | varchar(200) | 是 | 评论人终端信息 | |||
system_id | int(11) | 是 | 所属系统 | |||
ctime | bigint(20) | 否 | 创建时间 |