MySQL Create Table SQL
Table Structure: okayapi_box_cart:/tablelist/okayapi_box_cart.html
-- MySQL Table okayapi_box_cart
-- From: OkayAPI.com
CREATE TABLE `okayapi_box_cart` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`session_id` varchar(32) NULL COMMENT '',
`currency_id` bigint(20) NULL COMMENT '',
`promo_id` bigint(20) NULL COMMENT '',
KEY `session_id` (`session_id`),
KEY `currency_id` (`currency_id`),
KEY `promo_id` (`promo_id`),
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 |
---|---|---|---|---|---|---|
session_id | varchar(32) | 是 | Normal Index | |||
currency_id | bigint(20) | 是 | Normal Index | |||
promo_id | bigint(20) | 是 | Normal Index |