Skip to content

Commit b944e63

Browse files
committed
fix(migration): shorten active/sort index name
Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
1 parent 8abb33e commit b944e63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Migration/Version1000Date20260309120000.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt
6565

6666
$table->setPrimaryKey(['id']);
6767
$table->addUniqueIndex(['field_key'], 'profile_fields_def_key_uk');
68-
$table->addIndex(['active', 'sort_order'], 'profile_fields_def_active_order_idx');
68+
$table->addIndex(['active', 'sort_order'], 'pf_def_active_sort_idx');
6969
}
7070

7171
if (!$schema->hasTable('profile_fields_values')) {

0 commit comments

Comments
 (0)