escape the word Groups

This commit is contained in:
Isaac Connor 2020-11-23 19:33:53 -05:00
parent 4deb3a8d84
commit be27630a85
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ SET @s = (SELECT IF(
AND table_name = 'Groups'
AND column_name = 'MonitorIds'
) > 0,
"ALTER TABLE Groups MODIFY `MonitorIds` text NOT NULL",
"ALTER TABLE `Groups` MODIFY `MonitorIds` text NOT NULL",
"SELECT 'Groups no longer has MonitorIds'"
));