mirror of
https://github.com/hotspotbilling/phpnuxbill.git
synced 2025-08-04 18:24:32 +02:00
added router online status, also add monitor and also report to admin when goes offline, report depend on cron runtime
This commit is contained in:
parent
50a3f0a175
commit
76ac9431b3
4 changed files with 98 additions and 19 deletions
|
@ -138,6 +138,8 @@ CREATE TABLE `tbl_routers` (
|
|||
`password` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||
`description` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||
`coordinates` VARCHAR(50) NOT NULL DEFAULT '',
|
||||
`status` ENUM('Online', 'Offline') DEFAULT 'Online',
|
||||
`last_seen` DATETIME,
|
||||
`coverage` VARCHAR(8) NOT NULL DEFAULT '0',
|
||||
`enabled` tinyint(1) NOT NULL DEFAULT '1' COMMENT '0 disabled'
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue