From b944e6387be4920d445c25640310c7a99d354e8b Mon Sep 17 00:00:00 2001 From: Vitor Mattos <1079143+vitormattos@users.noreply.github.com> Date: Mon, 13 Apr 2026 14:54:48 -0300 Subject: [PATCH] fix(migration): shorten active/sort index name Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com> --- lib/Migration/Version1000Date20260309120000.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Migration/Version1000Date20260309120000.php b/lib/Migration/Version1000Date20260309120000.php index c01ee42..23c25d6 100644 --- a/lib/Migration/Version1000Date20260309120000.php +++ b/lib/Migration/Version1000Date20260309120000.php @@ -65,7 +65,7 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt $table->setPrimaryKey(['id']); $table->addUniqueIndex(['field_key'], 'profile_fields_def_key_uk'); - $table->addIndex(['active', 'sort_order'], 'profile_fields_def_active_order_idx'); + $table->addIndex(['active', 'sort_order'], 'pf_def_active_sort_idx'); } if (!$schema->hasTable('profile_fields_values')) {