MySQL Create Table SQL
Table Structure: okayapi_openant_product_attribute:/tablelist/okayapi_openant_product_attribute.html
-- MySQL Table okayapi_openant_product_attribute
-- From: OkayAPI.com
CREATE TABLE `okayapi_openant_product_attribute` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`product_id` int(11) NOT NULL COMMENT '',
`language_id` int(11) NOT NULL COMMENT '',
`attribute_id` int(11) NOT NULL COMMENT '',
`okayapi_openant_product_attribute_text` text NOT NULL COMMENT '',
`image` varchar(128) NOT NULL COMMENT '',
KEY `product_id` (`product_id`),
KEY `language_id` (`language_id`),
KEY `attribute_id` (`attribute_id`),
KEY `okayapi_openant_product_attribute_text` (`okayapi_openant_product_attribute_text`),
KEY `image` (`image`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'openant电商-商品属性';
After replication, you can go to the database to create the database table.
MySQL database table structure design
Displaying 1-5 of 5 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
product_id | int(11) | 否 | ||||
language_id | int(11) | 否 | ||||
attribute_id | int(11) | 否 | ||||
okayapi_openant_product_attribute_text | text | 否 | ||||
image | varchar(128) | 否 |