Files
mcp-vultr/not_used/extracted_backup/payment_gateway.sql

47 lines
1.8 KiB
SQL

#
# TABLE STRUCTURE FOR: payment_gateway
#
DROP TABLE IF EXISTS `payment_gateway`;
CREATE TABLE `payment_gateway` (
`id` int(11) NOT NULL,
`vendor` varchar(50) NOT NULL,
`api_key` text NOT NULL,
`server_key` text NOT NULL,
`client_key` text NOT NULL,
`is_active` int(11) NOT NULL,
`mode` int(11) NOT NULL,
`expired` int(11) NOT NULL,
`bca_va` int(11) NOT NULL,
`bri_va` int(11) NOT NULL,
`bni_va` int(11) NOT NULL,
`kodemerchant` text NOT NULL,
`mandiri_va` int(11) NOT NULL,
`cimb_va` int(11) NOT NULL,
`mybank_va` int(11) NOT NULL,
`ovo` int(11) NOT NULL,
`permata_va` int(11) NOT NULL,
`gopay` int(11) NOT NULL,
`shopeepay` int(11) NOT NULL,
`indomaret` int(11) NOT NULL,
`alfamart` int(11) NOT NULL,
`admin_fee` int(11) NOT NULL,
`va` int(11) NOT NULL,
`ewallet` int(11) NOT NULL,
`retail` int(11) NOT NULL,
`qrcode` int(11) NOT NULL,
`alfamidi` int(11) NOT NULL,
`muamalat_va` int(11) NOT NULL,
`sinarmas_va` int(11) NOT NULL,
`dana` int(11) NOT NULL,
`linkaja` int(11) NOT NULL,
`email` text NOT NULL,
`password` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
INSERT INTO `payment_gateway` (`id`, `vendor`, `api_key`, `server_key`, `client_key`, `is_active`, `mode`, `expired`, `bca_va`, `bri_va`, `bni_va`, `kodemerchant`, `mandiri_va`, `cimb_va`, `mybank_va`, `ovo`, `permata_va`, `gopay`, `shopeepay`, `indomaret`, `alfamart`, `admin_fee`, `va`, `ewallet`, `retail`, `qrcode`, `alfamidi`, `muamalat_va`, `sinarmas_va`, `dana`, `linkaja`, `email`, `password`) VALUES (1, 'Tripay', 'vE7fjr7ueEpXd06fsGR0a3oPZoP8J3hhgg3b2nrW', 'CAmA2-WFJMU-3FjpT-ASqqA-9m0hQ', 'client key', 1, 1, 5, 0, 0, 0, 'T9207', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '');