From 46d5159fd0a98afcd05591147233e67c20f48483 Mon Sep 17 00:00:00 2001 From: fogelito Date: Wed, 7 Jun 2023 10:45:48 +0300 Subject: [PATCH] Small typo --- src/Appwrite/Migration/Version/V19.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Appwrite/Migration/Version/V19.php b/src/Appwrite/Migration/Version/V19.php index 08f4789317..7245eb4927 100644 --- a/src/Appwrite/Migration/Version/V19.php +++ b/src/Appwrite/Migration/Version/V19.php @@ -145,7 +145,7 @@ class V19 extends Migration protected function alterPermissionIndex($collectionName): void { - $collectionName = "`{$this->projectDB->getDefaultDatabase()}`.`'_{$this->project->getInternalId()}_{$collectionName}_perms`"; + $collectionName = "`{$this->projectDB->getDefaultDatabase()}`.`_{$this->project->getInternalId()}_{$collectionName}_perms`"; try { $this->pdo->prepare("ALTER TABLE {$collectionName} DROP INDEX `_permission`")->execute();