27 lines
1.1 KiB
SQL
27 lines
1.1 KiB
SQL
#
|
|
# TABLE STRUCTURE FOR: router
|
|
#
|
|
|
|
DROP TABLE IF EXISTS `router`;
|
|
|
|
CREATE TABLE `router` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`is_active` int(11) NOT NULL,
|
|
`alias` varchar(50) NOT NULL,
|
|
`ip_address` text NOT NULL,
|
|
`username` varchar(20) NOT NULL,
|
|
`password` varchar(100) NOT NULL,
|
|
`port` int(11) NOT NULL,
|
|
`date_reset` int(11) NOT NULL,
|
|
`create_by` int(11) NOT NULL,
|
|
`router_mitra` int(11) NOT NULL,
|
|
`ros_version` text NOT NULL,
|
|
`services` text NOT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
|
|
|
INSERT INTO `router` (`id`, `is_active`, `alias`, `ip_address`, `username`, `password`, `port`, `date_reset`, `create_by`, `router_mitra`, `ros_version`, `services`) VALUES (1, 1, 'dms1', '103.138.63.178', 'dmsaw', 'gampang13579', 8729, 0, 0, 0, 'V7', 'API');
|
|
INSERT INTO `router` (`id`, `is_active`, `alias`, `ip_address`, `username`, `password`, `port`, `date_reset`, `create_by`, `router_mitra`, `ros_version`, `services`) VALUES (2, 0, 'dms2', '103.138.63.184', 'dmsaw', 'gampang2025', 8729, 0, 1, 0, 'V7', 'API');
|
|
|
|
|