fix commas
This commit is contained in:
parent
ae4e1011db
commit
c4bf67b063
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue