+ Use This Table All Design

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 NameField TypeDefaultIS NULLField CommentIndexDemo Data
client_idbigint(20)Normal Index
service_hosting_server_idbigint(20)Normal Index
service_hosting_hp_idbigint(20)Normal Index
sldvarchar(255)
tldvarchar(255)
ipvarchar(45)
usernamevarchar(255)
passvarchar(255)
resellertinyint(1)

Guess You Like

MySQL Table Design okayapi_activity_admin_history

MySQL Table Design okayapi_activity_client_email

MySQL Table Design okayapi_activity_client_history

MySQL Table Design okayapi_activity_system

MySQL Table Design okayapi_box_admin

MySQL Table Design okayapi_box_admin_group

MySQL Table Design okayapi_box_cart

MySQL Table Design okayapi_box_cart_product

MySQL Table Design okayapi_box_client

MySQL Table Design okayapi_box_client_balance

MySQL Table Design okayapi_box_client_group

MySQL Table Design okayapi_box_client_order

MySQL Table Design okayapi_box_client_order_meta

MySQL Table Design okayapi_box_client_order_status

MySQL Table Design okayapi_box_client_password_reset

MySQL Table Design okayapi_box_currency

MySQL Table Design okayapi_box_email_template

MySQL Table Design okayapi_box_extension

MySQL Table Design okayapi_box_extension_meta

MySQL Table Design okayapi_box_form

TOP ↑