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