MySQL Create Table SQL
Table Structure: okayapi_opms_pms_knowledges_sort:/tablelist/okayapi_opms_pms_knowledges_sort.html
-- MySQL Table okayapi_opms_pms_knowledges_sort
-- From: OkayAPI.com
CREATE TABLE `okayapi_opms_pms_knowledges_sort` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`okayapi_opms_pms_knowledges_sort_name` varchar(30) NULL COMMENT '名称',
`okayapi_opms_pms_knowledges_sort_desc` varchar(255) NULL COMMENT '描述',
`okayapi_opms_pms_knowledges_sort_status` tinyint(1) NULL DEFAULT '1' COMMENT '1显示,0屏蔽',
KEY `okayapi_opms_pms_knowledges_sort_name` (`okayapi_opms_pms_knowledges_sort_name`),
KEY `okayapi_opms_pms_knowledges_sort_desc` (`okayapi_opms_pms_knowledges_sort_desc`),
KEY `okayapi_opms_pms_knowledges_sort_status` (`okayapi_opms_pms_knowledges_sort_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-3 of 3 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
okayapi_opms_pms_knowledges_sort_name | varchar(30) | 是 | 名称 | |||
okayapi_opms_pms_knowledges_sort_desc | varchar(255) | 是 | 描述 | |||
okayapi_opms_pms_knowledges_sort_status | tinyint(1) | 1 | 是 | 1显示,0屏蔽 | 1 |