diff options
author | Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com> | 2025-02-13 10:35:13 +0100 |
---|---|---|
committer | Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com> | 2025-02-13 11:37:10 +0100 |
commit | 3548bde384bbd112ffb9d2198856610cb7db12a5 (patch) | |
tree | 9730e8a0571d1dc9a96c9b044c22f3dcc966dce7 /core/Application.php | |
parent | 6e1d9a26209ec5524fbc2fb9c7cbb53315e64d72 (diff) | |
download | nextcloud-server-perf/remove-filecache-index.tar.gz nextcloud-server-perf/remove-filecache-index.zip |
chore(filecache): remove index fs_id_storage_sizeperf/remove-filecache-index
Index is outdated by PR 50781
Signed-off-by: Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com>
Diffstat (limited to 'core/Application.php')
-rw-r--r-- | core/Application.php | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/core/Application.php b/core/Application.php index 79021a46e81..cfd0f90ef24 100644 --- a/core/Application.php +++ b/core/Application.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors * SPDX-FileCopyrightText: 2016 ownCloud, Inc. @@ -87,11 +88,6 @@ class Application extends App { ); $event->addMissingIndex( 'filecache', - 'fs_id_storage_size', - ['fileid', 'storage', 'size'] - ); - $event->addMissingIndex( - 'filecache', 'fs_storage_path_prefix', ['storage', 'path'], ['lengths' => [null, 64]] |