MySQL Create Table SQL
Table Structure: okayapi_box_support_pr:/tablelist/okayapi_box_support_pr.html
-- MySQL Table okayapi_box_support_pr
-- From: OkayAPI.com
CREATE TABLE `okayapi_box_support_pr` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`support_pr_category_id` bigint(20) NULL COMMENT '',
`title` varchar(100) NULL COMMENT '',
`content` text NULL COMMENT '',
KEY `support_pr_category_id` (`support_pr_category_id`),
KEY `title` (`title`),
KEY `content` (`content`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '主机销售-售后pr';
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 |
---|---|---|---|---|---|---|
support_pr_category_id | bigint(20) | 是 | Normal Index | |||
title | varchar(100) | 是 | ||||
content | text | 是 |