mirror of
https://github.com/ZoneMinder/zoneminder.git
synced 2025-12-23 14:27:59 -05:00
9 lines
356 B
SQL
9 lines
356 B
SQL
DROP TABLE IF EXISTS `Monitor_Status`;
|
|
CREATE TABLE `Monitor_Status` (
|
|
`MonitorId` int(10) unsigned NOT NULL,
|
|
`Status` enum('Unknown','NotRunning','Running','NoSignal','Signal') NOT NULL default 'Unknown',
|
|
`CaptureFPS` DECIMAL(10,2) NOT NULL default 0,
|
|
`AnalysisFPS` DECIMAL(5,2) NOT NULL default 0,
|
|
PRIMARY KEY (`MonitorId`)
|
|
) ENGINE=MEMORY;
|