MySQL Create Table SQL
Table Structure: okayapi_box_forum:/tablelist/okayapi_box_forum.html
-- MySQL Table okayapi_box_forum
-- From: OkayAPI.com
CREATE TABLE `okayapi_box_forum` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`category` varchar(255) NULL COMMENT '',
`title` text NULL COMMENT '',
`description` text NULL COMMENT '',
`slug` varchar(255) NULL COMMENT '',
`status` varchar(100) NULL COMMENT '',
`priority` int(11) NULL COMMENT '',
KEY `category` (`category`),
KEY `title` (`title`),
KEY `description` (`description`),
KEY `slug` (`slug`),
KEY `status` (`status`),
KEY `priority` (`priority`),
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-6 of 6 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
category | varchar(255) | 是 | ||||
title | text | 是 | ||||
description | text | 是 | ||||
slug | varchar(255) | 是 | Unique Index | |||
status | varchar(100) | 是 | ||||
priority | int(11) | 是 |