mirror of
https://github.com/ZoneMinder/zoneminder.git
synced 2026-03-30 11:42:22 -04:00
* Change MaxFPS to DECIMAL(5,3) to handle values like 1/60 = 0.017 * When fps < 1 we may need to wait longer than 10s. Also, we cannot sleep for a long time, because we may need to send a keep alive or check the command queue. So limit the sleep to 1s * Bump version * Update MaxFPS to Decimal(5,3) * Fix missing ;
7 lines
171 B
SQL
7 lines
171 B
SQL
--
|
|
-- Add primary keys for Logs and Stats tables
|
|
--
|
|
|
|
SELECT "Modifying Monitors MaxFPS to DECIMAL(5,3)";
|
|
ALTER TABLE `Monitors` MODIFY `MaxFPS` decimal(5,3) default NULL;
|