feat: Initialize project with core dependencies, Vultr API client, customer database service, and migration documentation.
This commit is contained in:
26
not_used/extracted_backup/modem.sql
Normal file
26
not_used/extracted_backup/modem.sql
Normal file
@@ -0,0 +1,26 @@
|
||||
#
|
||||
# TABLE STRUCTURE FOR: modem
|
||||
#
|
||||
|
||||
DROP TABLE IF EXISTS `modem`;
|
||||
|
||||
CREATE TABLE `modem` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`type` int(11) NOT NULL,
|
||||
`name` varchar(50) NOT NULL,
|
||||
`customer_id` int(11) NOT NULL,
|
||||
`show_customer` int(11) NOT NULL,
|
||||
`ip_local` text NOT NULL,
|
||||
`ip_public` text NOT NULL,
|
||||
`ssid_name` varchar(50) NOT NULL,
|
||||
`ssid_password` varchar(50) NOT NULL,
|
||||
`login_user` varchar(50) NOT NULL,
|
||||
`login_password` varchar(50) NOT NULL,
|
||||
`remark` text NOT NULL,
|
||||
`created` int(11) NOT NULL,
|
||||
`createby` int(11) NOT NULL,
|
||||
`updated` int(11) NOT NULL,
|
||||
`updateby` int(11) NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
||||
|
||||
Reference in New Issue
Block a user