MySQL Create Table SQL
Table Structure: okayapi_opms_pms_notices:/tablelist/okayapi_opms_pms_notices.html
-- MySQL Table okayapi_opms_pms_notices
-- From: OkayAPI.com
CREATE TABLE `okayapi_opms_pms_notices` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(100) NULL COMMENT '',
`content` text NULL COMMENT '',
`created` int(10) NULL COMMENT '',
`okayapi_opms_pms_notices_status` tinyint(1) NULL COMMENT '',
KEY `title` (`title`),
KEY `content` (`content`),
KEY `created` (`created`),
KEY `okayapi_opms_pms_notices_status` (`okayapi_opms_pms_notices_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-4 of 4 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
title | varchar(100) | 是 | ||||
content | text | 是 | ||||
created | int(10) | 是 | ||||
okayapi_opms_pms_notices_status | tinyint(1) | 是 |