From c4bf67b06371a2510d083c8b7e1bc81b9df4b7b1 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Wed, 12 Dec 2018 09:17:14 -0500 Subject: [PATCH] fix commas --- db/zm_update-1.33.0.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/db/zm_update-1.33.0.sql b/db/zm_update-1.33.0.sql index 624d254eb..cc7a257c7 100644 --- a/db/zm_update-1.33.0.sql +++ b/db/zm_update-1.33.0.sql @@ -12,8 +12,8 @@ SET @s = (SELECT IF( AND table_schema = DATABASE() AND column_name = 'DefaultView' ) > 0, -"ALTER TABLE Monitors DROP COLUMN DefaultView" -"SELECT 'Column DefaultView no longer exists in Monitors'", +"ALTER TABLE Monitors DROP COLUMN DefaultView", +"SELECT 'Column DefaultView no longer exists in Monitors'" )); PREPARE stmt FROM @s;