Fix commas
This commit is contained in:
parent
50fc4a2d94
commit
b821d665bf
|
@ -23,8 +23,8 @@ SET @s = (SELECT IF(
|
||||||
AND column_name = 'Status'
|
AND column_name = 'Status'
|
||||||
) > 0
|
) > 0
|
||||||
,
|
,
|
||||||
"ALTER TABLE Monitors DROP COLUMN Status"
|
"ALTER TABLE Monitors DROP COLUMN Status",
|
||||||
"SELECT 'Monitor Status already removed.'",
|
"SELECT 'Monitor Status already removed.'"
|
||||||
));
|
));
|
||||||
|
|
||||||
PREPARE stmt FROM @s;
|
PREPARE stmt FROM @s;
|
||||||
|
@ -36,8 +36,8 @@ SET @s = (SELECT IF(
|
||||||
AND column_name = 'CaptureFPS'
|
AND column_name = 'CaptureFPS'
|
||||||
) > 0
|
) > 0
|
||||||
,
|
,
|
||||||
"ALTER TABLE Monitors DROP COLUMN CaptureFPS"
|
"ALTER TABLE Monitors DROP COLUMN CaptureFPS",
|
||||||
"SELECT 'Monitor CaptureFPS already removed.'",
|
"SELECT 'Monitor CaptureFPS already removed.'"
|
||||||
));
|
));
|
||||||
|
|
||||||
PREPARE stmt FROM @s;
|
PREPARE stmt FROM @s;
|
||||||
|
@ -49,8 +49,8 @@ SET @s = (SELECT IF(
|
||||||
AND column_name = 'AnalysisFPS'
|
AND column_name = 'AnalysisFPS'
|
||||||
) > 0
|
) > 0
|
||||||
,
|
,
|
||||||
"ALTER TABLE Monitors DROP COLUMN AnalysisFPS"
|
"ALTER TABLE Monitors DROP COLUMN AnalysisFPS",
|
||||||
"SELECT 'Monitor AnalysisFPS already removed.'",
|
"SELECT 'Monitor AnalysisFPS already removed.'"
|
||||||
));
|
));
|
||||||
|
|
||||||
PREPARE stmt FROM @s;
|
PREPARE stmt FROM @s;
|
||||||
|
|
Loading…
Reference in New Issue