MySQL Create Table SQL
Table Structure: okayapi_kite_document_comments:/tablelist/okayapi_kite_document_comments.html
-- MySQL Table okayapi_kite_document_comments
-- From: OkayAPI.com
CREATE TABLE `okayapi_kite_document_comments` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`site_id` int(11) NULL COMMENT '网站ID',
`pid` int(11) NULL DEFAULT '0' COMMENT '评论上级ID',
`uid` int(11) NULL COMMENT '评论人mid ',
`document_id` int(11) NULL COMMENT '评论文档ID',
`content` text NULL COMMENT '评论内容',
`status` tinyint(1) NULL DEFAULT '0' COMMENT '0 隐藏 1 显示',
`create_at` int(11) NULL COMMENT '创建时间',
`update_at` int(11) NULL COMMENT '更新时间',
KEY `site_id` (`site_id`),
KEY `pid` (`pid`),
KEY `uid` (`uid`),
KEY `document_id` (`document_id`),
KEY `content` (`content`),
KEY `status` (`status`),
KEY `create_at` (`create_at`),
KEY `update_at` (`update_at`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '建站系统-档案评论表';
After replication, you can go to the database to create the database table.
MySQL database table structure design
Displaying 1-8 of 8 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
site_id | int(11) | 否 | 网站ID | |||
pid | int(11) | 0 | 否 | 评论上级ID | 0 | |
uid | int(11) | 否 | 评论人mid | |||
document_id | int(11) | 否 | 评论文档ID | |||
content | text | 否 | 评论内容 | |||
status | tinyint(1) | 0 | 否 | 0 隐藏 1 显示 | 0 | |
create_at | int(11) | 是 | 创建时间 | |||
update_at | int(11) | 是 | 更新时间 |