From 1546add5d559c77ad02a5a659db56cab0e09557c Mon Sep 17 00:00:00 2001 From: Chirag Aggarwal Date: Tue, 28 Oct 2025 15:05:14 +0530 Subject: [PATCH] add to both dbs --- src/Appwrite/Migration/Version/V23.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/Appwrite/Migration/Version/V23.php b/src/Appwrite/Migration/Version/V23.php index fd6973a71e..82acf40149 100644 --- a/src/Appwrite/Migration/Version/V23.php +++ b/src/Appwrite/Migration/Version/V23.php @@ -143,6 +143,16 @@ class V23 extends Migration 'buckets', 'transformations', ); + } catch (Throwable $th) { + Console::warning("(platform) 'transformations' from 'buckets': {$th->getMessage()}"); + } + + try { + $this->createAttributeFromCollection( + $this->dbForProject, + 'buckets', + 'transformations', + ); } catch (Throwable $th) { Console::warning("'transformations' from 'buckets': {$th->getMessage()}"); }