From d50b3f15193416839423d0a036c03e21ddccfa36 Mon Sep 17 00:00:00 2001 From: Darshan Date: Tue, 13 May 2025 17:25:01 +0530 Subject: [PATCH] fix: indexes on changed attributes. --- app/config/collections/platform.php | 2 +- app/config/collections/projects.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/config/collections/platform.php b/app/config/collections/platform.php index 57c047c14e..84f0731443 100644 --- a/app/config/collections/platform.php +++ b/app/config/collections/platform.php @@ -1420,7 +1420,7 @@ return [ [ '$id' => ID::custom('_key_piid_riid_rt'), 'type' => Database::INDEX_KEY, - 'attributes' => ['projectInternalId', 'resourceInternalId', 'resourceType'], + 'attributes' => ['projectInternalId', 'deploymentInternalId', 'deploymentResourceType'], 'lengths' => [], 'orders' => [], ], diff --git a/app/config/collections/projects.php b/app/config/collections/projects.php index 3a73ad7703..48a0938a1c 100644 --- a/app/config/collections/projects.php +++ b/app/config/collections/projects.php @@ -2083,7 +2083,7 @@ return [ [ '$id' => ID::custom('_key_function_internal_id'), 'type' => Database::INDEX_KEY, - 'attributes' => ['functionInternalId'], + 'attributes' => ['resourceInternalId'], 'lengths' => [], 'orders' => [], ],