+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_box_pay_gateway:/tablelist/okayapi_box_pay_gateway.html


-- MySQL Table okayapi_box_pay_gateway
-- From: OkayAPI.com
CREATE TABLE `okayapi_box_pay_gateway` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `gateway` varchar(255) NULL COMMENT '',
    `accepted_currencies` text NULL COMMENT '',
    `enabled` tinyint(1) NULL DEFAULT '1' COMMENT '',
    `allow_single` tinyint(1) NULL DEFAULT '1' COMMENT '',
    `allow_recurrent` tinyint(1) NULL DEFAULT '1' COMMENT '',
    `test_mode` tinyint(1) NULL DEFAULT '0' COMMENT '',
    `config` text NULL COMMENT '',
    `name` varchar(255) NULL COMMENT '',
    KEY `gateway` (`gateway`),
    KEY `accepted_currencies` (`accepted_currencies`),
    KEY `enabled` (`enabled`),
    KEY `allow_single` (`allow_single`),
    KEY `allow_recurrent` (`allow_recurrent`),
    KEY `test_mode` (`test_mode`),
    KEY `config` (`config`),
    KEY `name` (`name`),
    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-8 of 8 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
gatewayvarchar(255)
accepted_currenciestext
enabledtinyint(1)11
allow_singletinyint(1)11
allow_recurrenttinyint(1)11
test_modetinyint(1)00
configtext
namevarchar(255)

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 ↑