20 lines
472 B
SQL
20 lines
472 B
SQL
#
|
|
# TABLE STRUCTURE FOR: briva
|
|
#
|
|
|
|
DROP TABLE IF EXISTS `briva`;
|
|
|
|
CREATE TABLE `briva` (
|
|
`id` int(9) NOT NULL AUTO_INCREMENT,
|
|
`is_active` int(11) NOT NULL,
|
|
`mode` int(11) NOT NULL,
|
|
`auto_pay` int(11) NOT NULL,
|
|
`account_number` text NOT NULL,
|
|
`consumer_key` text NOT NULL,
|
|
`consumer_secret` text NOT NULL,
|
|
`institution` tinytext NOT NULL,
|
|
`briva` tinytext NOT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
|
|
|