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