MySQL Create Table SQL
Table Structure: okayapi_opms_pms_knowledges_comment:/tablelist/okayapi_opms_pms_knowledges_comment.html
-- MySQL Table okayapi_opms_pms_knowledges_comment
-- From: OkayAPI.com
CREATE TABLE `okayapi_opms_pms_knowledges_comment` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`userid` bigint(20) NULL COMMENT '',
`knowid` bigint(20) NULL COMMENT '',
`content` varchar(255) NULL COMMENT '',
`created` int(10) NULL COMMENT '',
`okayapi_opms_pms_knowledges_comment_status` tinyint(1) NULL DEFAULT '1' COMMENT '1正常2屏蔽',
KEY `userid` (`userid`),
KEY `knowid` (`knowid`),
KEY `content` (`content`),
KEY `created` (`created`),
KEY `okayapi_opms_pms_knowledges_comment_status` (`okayapi_opms_pms_knowledges_comment_status`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'OPMS和OA管理-知识评论表';
After replication, you can go to the database to create the database table.
MySQL database table structure design
Displaying 1-5 of 5 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
userid | bigint(20) | 是 | ||||
knowid | bigint(20) | 是 | ||||
content | varchar(255) | 是 | ||||
created | int(10) | 是 | ||||
okayapi_opms_pms_knowledges_comment_status | tinyint(1) | 1 | 是 | 1正常2屏蔽 | 1 |