From d04be5bed00c1ce5cd1cb4dc3a74fab68a2ea368 Mon Sep 17 00:00:00 2001 From: Sein Coray Date: Wed, 11 Jul 2018 13:36:17 +0200 Subject: [PATCH] fixed typo in update script --- src/install/updates/update_v0.5.x_v0.6.0.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/install/updates/update_v0.5.x_v0.6.0.php b/src/install/updates/update_v0.5.x_v0.6.0.php index d6c53f9b6..a87584b83 100644 --- a/src/install/updates/update_v0.5.x_v0.6.0.php +++ b/src/install/updates/update_v0.5.x_v0.6.0.php @@ -38,7 +38,7 @@ echo "\n"; echo "Create new permissions... "; -$FACTORIES::getAgentFactory()->getDB()->query("ALTER TABLE `user` CHANGE `rightGroupId` `rightGroupId` INT(11) NULL"); +$FACTORIES::getAgentFactory()->getDB()->query("ALTER TABLE `User` CHANGE `rightGroupId` `rightGroupId` INT(11) NULL"); // load all users and set permission group to null $users = $FACTORIES::getUserFactory()->filter(array()); $uS = new UpdateSet(User::RIGHT_GROUP_ID, null);