MySQL Create Table SQL
Table Structure: okayapi_box_service_hosting:/tablelist/okayapi_box_service_hosting.html
-- MySQL Table okayapi_box_service_hosting
-- From: OkayAPI.com
CREATE TABLE `okayapi_box_service_hosting` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`client_id` bigint(20) NULL COMMENT '',
`service_hosting_server_id` bigint(20) NULL COMMENT '',
`service_hosting_hp_id` bigint(20) NULL COMMENT '',
`sld` varchar(255) NULL COMMENT '',
`tld` varchar(255) NULL COMMENT '',
`ip` varchar(45) NULL COMMENT '',
`username` varchar(255) NULL COMMENT '',
`pass` varchar(255) NULL COMMENT '',
`reseller` tinyint(1) NULL COMMENT '',
KEY `client_id` (`client_id`),
KEY `service_hosting_server_id` (`service_hosting_server_id`),
KEY `service_hosting_hp_id` (`service_hosting_hp_id`),
KEY `sld` (`sld`),
KEY `tld` (`tld`),
KEY `ip` (`ip`),
KEY `username` (`username`),
KEY `pass` (`pass`),
KEY `reseller` (`reseller`),
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-9 of 9 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
client_id | bigint(20) | 是 | Normal Index | |||
service_hosting_server_id | bigint(20) | 是 | Normal Index | |||
service_hosting_hp_id | bigint(20) | 是 | Normal Index | |||
sld | varchar(255) | 是 | ||||
tld | varchar(255) | 是 | ||||
ip | varchar(45) | 是 | ||||
username | varchar(255) | 是 | ||||
pass | varchar(255) | 是 | ||||
reseller | tinyint(1) | 是 |