35 lines
1.3 KiB
SQL
35 lines
1.3 KiB
SQL
#
|
|
# TABLE STRUCTURE FOR: sms_gateway
|
|
#
|
|
|
|
DROP TABLE IF EXISTS `sms_gateway`;
|
|
|
|
CREATE TABLE `sms_gateway` (
|
|
`sms_id` int(9) NOT NULL AUTO_INCREMENT,
|
|
`sms_name` text NOT NULL,
|
|
`sms_url` text NOT NULL,
|
|
`sms_token` text NOT NULL,
|
|
`sms_user` text NOT NULL,
|
|
`sms_password` text NOT NULL,
|
|
`sms_api_key` text NOT NULL,
|
|
`is_active` int(11) NOT NULL,
|
|
`sms_vendor` text NOT NULL,
|
|
`sms_createinvoice` int(11) NOT NULL,
|
|
`sms_paymentinvoice` int(11) NOT NULL,
|
|
`sms_duedateinvoice` int(11) NOT NULL,
|
|
`sms_interval` int(11) NOT NULL,
|
|
`sms_reminderinvoice` int(11) NOT NULL,
|
|
`sms_sender` text NOT NULL,
|
|
`sms_time_start` text NOT NULL,
|
|
`sms_time_end` text NOT NULL,
|
|
`text_bill` text NOT NULL,
|
|
`text_payment` text NOT NULL,
|
|
`text_duedate` text NOT NULL,
|
|
`text_add_customer` text NOT NULL,
|
|
PRIMARY KEY (`sms_id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
|
|
|
|
INSERT INTO `sms_gateway` (`sms_id`, `sms_name`, `sms_url`, `sms_token`, `sms_user`, `sms_password`, `sms_api_key`, `is_active`, `sms_vendor`, `sms_createinvoice`, `sms_paymentinvoice`, `sms_duedateinvoice`, `sms_interval`, `sms_reminderinvoice`, `sms_sender`, `sms_time_start`, `sms_time_end`, `text_bill`, `text_payment`, `text_duedate`, `text_add_customer`) VALUES (1, '', '', '', '', '', '', 0, '', 0, 0, 0, 0, 0, '', '', '', '', '', '', '');
|
|
|
|
|