MySQL Create Table SQL
Table Structure: okayapi_box_kb_article_category:/tablelist/okayapi_box_kb_article_category.html
-- MySQL Table okayapi_box_kb_article_category
-- From: OkayAPI.com
CREATE TABLE `okayapi_box_kb_article_category` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(100) NULL COMMENT '',
`description` text NULL COMMENT '',
`slug` varchar(255) NULL COMMENT '',
KEY `title` (`title`),
KEY `description` (`description`),
KEY `slug` (`slug`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '主机销售-kb文章分类';
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 |
---|---|---|---|---|---|---|
title | varchar(100) | 是 | ||||
description | text | 是 | ||||
slug | varchar(255) | 是 | Unique Index |