This commit is contained in:
Andrew Bauer 2015-08-15 12:13:35 -05:00
parent 85e2b165b1
commit c828a3df33
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ SET @s = (SELECT IF(
AND column_name = 'Groups'
) > 0,
"SELECT 'Column Groups exists in Users'",
"ALTER TABLE Monitors ADD COLUMN `Groups` ENUM('None','View','Edit') NOT NULL DEFAULT 'None' AFTER `Monitors`;
"ALTER TABLE Monitors ADD COLUMN `Groups` ENUM('None','View','Edit') NOT NULL DEFAULT 'None' AFTER `Monitors`"
));
PREPARE stmt FROM @s;