From 97312d1a6ddf8f20cf8dda9f606672802293252d Mon Sep 17 00:00:00 2001 From: Steven Nguyen Date: Thu, 9 Oct 2025 16:54:41 -0700 Subject: [PATCH] feat(self-hosted): update migration for transactions collections --- src/Appwrite/Migration/Version/V23.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Appwrite/Migration/Version/V23.php b/src/Appwrite/Migration/Version/V23.php index 8a26dbf5f1..7a6d58d59f 100644 --- a/src/Appwrite/Migration/Version/V23.php +++ b/src/Appwrite/Migration/Version/V23.php @@ -97,6 +97,10 @@ class V23 extends Migration $this->dbForProject->purgeCachedDocument(Database::METADATA, $id); switch ($id) { + case '_metadata': + $this->createCollection('transactions'); + $this->createCollection('transactionLogs'); + break; case 'projects': $attributes = [ 'pingCount',