change table name from monitors to users

pull/1018/head
Andrew Bauer 2015-08-15 15:42:00 -05:00
parent 36c7d7f9c2
commit 461f81089b
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 Users ADD COLUMN `Groups` ENUM('None','View','Edit') NOT NULL DEFAULT 'None' AFTER `Monitors`"
));
PREPARE stmt FROM @s;