Skip to content

Commit

Permalink
Merge pull request #44586 from nextcloud/pulsejet/name-idx
Browse files Browse the repository at this point in the history
perf(core): add index on name
  • Loading branch information
susnux committed Apr 28, 2024
2 parents b93724a + 5bb0a29 commit b081d3c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions core/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,11 @@ public function __construct() {
'fs_parent',
['parent']
);
$event->addMissingIndex(
'filecache',
'fs_name_hash',
['name']
);

$event->addMissingIndex(
'twofactor_providers',
Expand Down

0 comments on commit b081d3c

Please sign in to comment.