put sql update into zm_update-1.33.0.sql
This commit is contained in:
parent
278abbc201
commit
4e4c7502c3
|
@ -0,0 +1,18 @@
|
||||||
|
--
|
||||||
|
-- This updates a 1.32.* database to 1.33.0
|
||||||
|
--
|
||||||
|
-- Remove DefaultView from Monitors table.
|
||||||
|
|
||||||
|
SET @s = (SELECT IF(
|
||||||
|
(SELECT COUNT(*)
|
||||||
|
FROM INFORMATION_SCHEMA.COLUMNS
|
||||||
|
WHERE table_name = 'Monitors'
|
||||||
|
AND table_schema = DATABASE()
|
||||||
|
AND column_name = 'DefaultView'
|
||||||
|
) > 0,
|
||||||
|
"ALTER TABLE Monitors DROP COLUMN DefaultView"
|
||||||
|
"SELECT 'Column DefaultView no longer exists in Monitors'",
|
||||||
|
));
|
||||||
|
|
||||||
|
PREPARE stmt FROM @s;
|
||||||
|
EXECUTE stmt;
|
Loading…
Reference in New Issue