From dcfa31ca2b704730b2c8b633ddf0d3c08d80ab3a 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 1e1b21a822..2a75bac4b2 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',