32 lines
1.2 KiB
SQL
32 lines
1.2 KiB
SQL
#
|
|
# TABLE STRUCTURE FOR: va
|
|
#
|
|
|
|
DROP TABLE IF EXISTS `va`;
|
|
|
|
CREATE TABLE `va` (
|
|
`id` int(9) NOT NULL AUTO_INCREMENT,
|
|
`is_active` int(11) NOT NULL,
|
|
`mode` int(11) NOT NULL,
|
|
`vendor` text NOT NULL,
|
|
`prefix` text NOT NULL,
|
|
`client_id` text NOT NULL,
|
|
`secret_key` text NOT NULL,
|
|
`text_income` text NOT NULL,
|
|
`remark` text NOT NULL,
|
|
`target_wa` text NOT NULL,
|
|
`fee_va` int(11) NOT NULL,
|
|
`send_wa` int(11) NOT NULL,
|
|
`created` int(11) NOT NULL,
|
|
`createby` int(11) NOT NULL,
|
|
`updated` int(11) NOT NULL,
|
|
`updateby` int(11) NOT NULL,
|
|
`accumulation` int(11) NOT NULL,
|
|
`name_amount` int(11) NOT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
|
|
|
|
INSERT INTO `va` (`id`, `is_active`, `mode`, `vendor`, `prefix`, `client_id`, `secret_key`, `text_income`, `remark`, `target_wa`, `fee_va`, `send_wa`, `created`, `createby`, `updated`, `updateby`, `accumulation`, `name_amount`) VALUES (1, 0, 1, 'BNI', '', '', '', 'Data Pembayaran VA Masuk\nNama : {name}\nVA : {virtualaccount}\nTransaksi ID : {trxid}\nNominal : {amount}\nWaktu Bayar : {datetimepayment}', '', '', 0, 0, 1758860300, 0, 1758860300, 0, 0, 0);
|
|
|
|
|