From 353e84bb7422a4761a2fcc4353af47aa96f84d14 Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Tue, 11 Nov 2025 21:10:11 +1300 Subject: [PATCH] Fix keys --- .../Databases/TablesDB/Transactions/TransactionsBase.php | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/tests/e2e/Services/Databases/TablesDB/Transactions/TransactionsBase.php b/tests/e2e/Services/Databases/TablesDB/Transactions/TransactionsBase.php index 8ebc7582b3..cbdc7826a0 100644 --- a/tests/e2e/Services/Databases/TablesDB/Transactions/TransactionsBase.php +++ b/tests/e2e/Services/Databases/TablesDB/Transactions/TransactionsBase.php @@ -5600,8 +5600,7 @@ trait TransactionsBase 'x-appwrite-project' => $this->getProject()['$id'], 'x-appwrite-key' => $this->getProject()['apiKey'] ]), [ - 'columnId' => 'items', - 'name' => 'Items', + 'key' => 'items', 'size' => 255, 'required' => false, 'array' => true, @@ -5719,8 +5718,7 @@ trait TransactionsBase 'x-appwrite-project' => $this->getProject()['$id'], 'x-appwrite-key' => $this->getProject()['apiKey'] ]), [ - 'columnId' => 'tags', - 'name' => 'Tags', + 'key' => 'tags', 'size' => 255, 'required' => false, 'array' => true, @@ -5848,8 +5846,7 @@ trait TransactionsBase 'x-appwrite-project' => $this->getProject()['$id'], 'x-appwrite-key' => $this->getProject()['apiKey'] ]), [ - 'columnId' => $col['columnId'], - 'name' => $col['name'], + 'key' => $col['columnId'], 'size' => 255, 'required' => false, 'array' => true,