mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Fix the definition. Should be mef instead of mef-evc * Added Coriant TNMS Hardware page. * Polling and discovery modules for TNMS Network Equipements. * SQL in one line. * Only show when OS is coriant * Fix conflict file * Conflict file * Added missing COLLATE * Refactor poller code for more data to be inserted into DB in the future. Removed the discovery module and merged it into poller code. * Removed tnms-nbi discovery also in the yaml * Removing debug * Code updates and fixes + schema rename * bootstrapify the code. Renamed the sql file * Bloody tabs ! * Add db_schema.yaml update.
2 lines
469 B
SQL
2 lines
469 B
SQL
CREATE TABLE IF NOT EXISTS `tnmsneinfo` ( `id` int(11) NOT NULL AUTO_INCREMENT, `device_id` int(11) NOT NULL, `neID` int(32) NOT NULL, `neType` varchar(128) NOT NULL, `neName` varchar(128) NOT NULL, `neLocation` varchar(128) NOT NULL, `neAlarm` varchar(128) NOT NULL, `neOpMode` varchar(128) NOT NULL, `neOpState` varchar(128) NOT NULL, PRIMARY KEY (`id`), KEY `device_id` (`device_id`), KEY `neID` (`neID`)) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
|