From 066c801a4556f2dc8d3b7cd3a66c695856ca1bc8 Mon Sep 17 00:00:00 2001 From: ArnabChatterjee20k Date: Tue, 5 Aug 2025 21:56:31 +0530 Subject: [PATCH] removed $id to get updated --- src/Appwrite/Migration/Version/V23.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Appwrite/Migration/Version/V23.php b/src/Appwrite/Migration/Version/V23.php index d54b6ddc87..7d24756c14 100644 --- a/src/Appwrite/Migration/Version/V23.php +++ b/src/Appwrite/Migration/Version/V23.php @@ -55,7 +55,7 @@ class V23 extends Migration 'array' => false, 'filters' => [], ])]); - $this->dbForProject->updateDocuments('databases', new Document(['$id' => 'type','type' => 'sql'])); + $this->dbForProject->updateDocuments('databases', new Document(['type' => 'sql'])); } }