fix commas

This commit is contained in:
Isaac Connor 2018-12-12 09:17:14 -05:00
parent ae4e1011db
commit c4bf67b063
1 changed files with 2 additions and 2 deletions

View File

@ -12,8 +12,8 @@ SET @s = (SELECT IF(
AND table_schema = DATABASE() AND table_schema = DATABASE()
AND column_name = 'DefaultView' AND column_name = 'DefaultView'
) > 0, ) > 0,
"ALTER TABLE Monitors DROP COLUMN DefaultView" "ALTER TABLE Monitors DROP COLUMN DefaultView",
"SELECT 'Column DefaultView no longer exists in Monitors'", "SELECT 'Column DefaultView no longer exists in Monitors'"
)); ));
PREPARE stmt FROM @s; PREPARE stmt FROM @s;