MySQL Create Table SQL
Table Structure: okayapi_box_cart_product:/tablelist/okayapi_box_cart_product.html
-- MySQL Table okayapi_box_cart_product
-- From: OkayAPI.com
CREATE TABLE `okayapi_box_cart_product` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`cart_id` bigint(20) NULL COMMENT '',
`product_id` bigint(20) NULL COMMENT '',
`config` text NULL COMMENT '',
KEY `cart_id` (`cart_id`),
KEY `product_id` (`product_id`),
KEY `config` (`config`),
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 |
---|---|---|---|---|---|---|
cart_id | bigint(20) | 是 | Normal Index | |||
product_id | bigint(20) | 是 | Normal Index | |||
config | text | 是 |