37 lines
1.3 KiB
SQL
37 lines
1.3 KiB
SQL
#
|
|
# TABLE STRUCTURE FOR: package
|
|
#
|
|
|
|
DROP TABLE IF EXISTS `package`;
|
|
|
|
CREATE TABLE `package` (
|
|
`id` int(11) NOT NULL,
|
|
`payment_gateway` int(11) NOT NULL,
|
|
`router` int(11) NOT NULL,
|
|
`count_router` int(11) NOT NULL,
|
|
`count_customer` int(11) NOT NULL,
|
|
`telegram_bot` int(11) NOT NULL,
|
|
`wa_gateway` int(11) NOT NULL,
|
|
`maps` int(11) NOT NULL,
|
|
`chart` int(11) NOT NULL,
|
|
`mitra` int(11) NOT NULL,
|
|
`invoice_custom` int(11) NOT NULL,
|
|
`invoice_no` int(11) NOT NULL,
|
|
`coverage_operator` int(11) NOT NULL,
|
|
`coverage_teknisi` int(11) NOT NULL,
|
|
`modem` int(11) NOT NULL,
|
|
`coverage_package` int(11) NOT NULL,
|
|
`olt` int(11) NOT NULL,
|
|
`count_olt` int(11) NOT NULL,
|
|
`absensi` int(11) NOT NULL,
|
|
`briva` int(11) NOT NULL,
|
|
`sms_gateway` int(11) NOT NULL,
|
|
`moota` int(11) NOT NULL,
|
|
`bcava` int(11) NOT NULL,
|
|
PRIMARY KEY (`payment_gateway`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
|
|
|
INSERT INTO `package` (`id`, `payment_gateway`, `router`, `count_router`, `count_customer`, `telegram_bot`, `wa_gateway`, `maps`, `chart`, `mitra`, `invoice_custom`, `invoice_no`, `coverage_operator`, `coverage_teknisi`, `modem`, `coverage_package`, `olt`, `count_olt`, `absensi`, `briva`, `sms_gateway`, `moota`, `bcava`) VALUES (1, 1, 1, 1, 250, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
|
|
|
|