aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorFerdinand Thiessen <opensource@fthiessen.de>2024-04-28 16:55:25 +0200
committerGitHub <noreply@github.com>2024-04-28 16:55:25 +0200
commitb081d3ccccb741235858fb0515678ab45f79f623 (patch)
treed2429c82750d1e776094e1a64ddbec369fa940ec /core
parentb93724a515ced59dc1825eb5182df7023b70f0db (diff)
parent5bb0a2933953cd9347b6a6bfeac312ce79bff6f1 (diff)
downloadnextcloud-server-b081d3ccccb741235858fb0515678ab45f79f623.tar.gz
nextcloud-server-b081d3ccccb741235858fb0515678ab45f79f623.zip
Merge pull request #44586 from nextcloud/pulsejet/name-idx
perf(core): add index on name
Diffstat (limited to 'core')
-rw-r--r--core/Application.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/core/Application.php b/core/Application.php
index a4e915caec2..c0b88e154c0 100644
--- a/core/Application.php
+++ b/core/Application.php
@@ -126,6 +126,11 @@ class Application extends App {
'fs_parent',
['parent']
);
+ $event->addMissingIndex(
+ 'filecache',
+ 'fs_name_hash',
+ ['name']
+ );
$event->addMissingIndex(
'twofactor_providers',