+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_box_tld:/tablelist/okayapi_box_tld.html


-- MySQL Table okayapi_box_tld
-- From: OkayAPI.com
CREATE TABLE `okayapi_box_tld` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `tld_registrar_id` bigint(20) NULL COMMENT '',
    `tld` varchar(15) NULL COMMENT '',
    `price_registration` decimal(18,2) NULL DEFAULT '0.00' COMMENT '',
    `price_renew` decimal(18,2) NULL DEFAULT '0.00' COMMENT '',
    `price_transfer` decimal(18,2) NULL DEFAULT '0.00' COMMENT '',
    `allow_register` tinyint(1) NULL COMMENT '',
    `allow_transfer` tinyint(1) NULL COMMENT '',
    `active` tinyint(1) NULL DEFAULT '1' COMMENT '',
    `min_years` tinyint(4) NULL COMMENT '',
    KEY `tld_registrar_id` (`tld_registrar_id`),
    KEY `tld` (`tld`),
    KEY `price_registration` (`price_registration`),
    KEY `price_renew` (`price_renew`),
    KEY `price_transfer` (`price_transfer`),
    KEY `allow_register` (`allow_register`),
    KEY `allow_transfer` (`allow_transfer`),
    KEY `active` (`active`),
    KEY `min_years` (`min_years`),
    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
tld_registrar_idbigint(20)Normal Index
tldvarchar(15)Unique Index
price_registrationdecimal(18,2)0.000.00
price_renewdecimal(18,2)0.000.00
price_transferdecimal(18,2)0.000.00
allow_registertinyint(1)
allow_transfertinyint(1)
activetinyint(1)11
min_yearstinyint(4)

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 ↑