zoneminder/db/zm_update-1.30.2.sql

25 lines
537 B
MySQL
Raw Normal View History

2016-02-06 00:23:45 +08:00
--
-- This updates a 1.30.1 database to 1.30.2
--
--
-- Update Filters table to have a Concurrent Column
--
SET @s = (SELECT IF(
(SELECT COUNT(*)
FROM INFORMATION_SCHEMA.COLUMNS
WHERE table_name = 'Filters'
AND table_schema = DATABASE()
AND column_name = 'Concurrent'
) > 0,
"SELECT 'Column Concurrent already exists in Filters'",
"ALTER TABLE Filters ADD COLUMN `Concurrent` tinyint(1) unsigned NOT NULL default '0' AFTER Background"
));
PREPARE stmt FROM @s;
EXECUTE stmt;
ALTER TABLE Users MODIFY MonitorIds TEXT NOT NULL;