Merge branch 'release-1.36' of github.com:ZoneMinder/zoneminder into release-1.36

pull/4202/head
Isaac Connor 2024-11-06 12:37:50 -05:00
commit 6f8f47831f
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ SET @s = (SELECT IF(
AND column_name = 'UpdatedOn'
) > 0,
"SELECT 'Column UpdatedOn already exists in Monitor_Status'",
"ALTER TABLE `Monitor_Status` ADD `UpdatedOn` datetime NOT NULL AFTER CaptureBandwidth"
"ALTER TABLE `Monitor_Status` ADD `UpdatedOn` datetime AFTER CaptureBandwidth"
));
PREPARE stmt FROM @s;