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 Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
gateway | varchar(255) | 是 | ||||
accepted_currencies | text | 是 | ||||
enabled | tinyint(1) | 1 | 是 | 1 | ||
allow_single | tinyint(1) | 1 | 是 | 1 | ||
allow_recurrent | tinyint(1) | 1 | 是 | 1 | ||
test_mode | tinyint(1) | 0 | 是 | 0 | ||
config | text | 是 | ||||
name | varchar(255) | 是 |