Change Private to Readonly as Private only exists in master

pull/4202/head
Isaac Connor 2022-05-24 13:06:30 -04:00
parent 7b67749472
commit ebca4b80bb
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ SET @s = (SELECT IF(
AND column_name = 'System'
) > 0,
"SELECT 'Column System already exists in Config'",
"ALTER TABLE `Config` ADD COLUMN `System` BOOLEAN NOT NULL DEFAULT FALSE AFTER `Private`"
"ALTER TABLE `Config` ADD COLUMN `System` BOOLEAN NOT NULL DEFAULT FALSE AFTER `Readonly`"
));
PREPARE stmt FROM @s;