MySQL Create Table SQL
Table Structure: okayapi_box_queue:/tablelist/okayapi_box_queue.html
-- MySQL Table okayapi_box_queue
-- From: OkayAPI.com
CREATE TABLE `okayapi_box_queue` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(100) NULL COMMENT '',
`mod` varchar(255) NULL COMMENT '',
`timeout` bigint(20) NULL COMMENT '',
`iteration` int(10) NULL COMMENT '',
KEY `name` (`name`),
KEY `mod` (`mod`),
KEY `timeout` (`timeout`),
KEY `iteration` (`iteration`),
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-4 of 4 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
name | varchar(100) | 是 | ||||
mod | varchar(255) | 是 | ||||
timeout | bigint(20) | 是 | ||||
iteration | int(10) | 是 |