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