diff options
author | Julius Härtl <jus@bitgrid.net> | 2022-02-07 09:55:39 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2022-04-19 12:37:36 +0200 |
commit | 7fbd93b2ad66a1ca83ef2a2778128bf2cda06caf (patch) | |
tree | 17fb8d130769954261661643c07a3ea46d0e2355 /core/Command/Db | |
parent | cd95fce105fe5f0e71b1bcac7685464f936b9749 (diff) | |
download | nextcloud-server-7fbd93b2ad66a1ca83ef2a2778128bf2cda06caf.tar.gz nextcloud-server-7fbd93b2ad66a1ca83ef2a2778128bf2cda06caf.zip |
Additional index on oc_preferences to make sure that gettingh values without a user filter is fast
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'core/Command/Db')
-rw-r--r-- | core/Command/Db/AddMissingIndices.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/core/Command/Db/AddMissingIndices.php b/core/Command/Db/AddMissingIndices.php index a4379ffacc3..8394e75e845 100644 --- a/core/Command/Db/AddMissingIndices.php +++ b/core/Command/Db/AddMissingIndices.php @@ -435,6 +435,19 @@ class AddMissingIndices extends Command { } } + $output->writeln('<info>Check indices of the oc_preferences table.</info>'); + if ($schema->hasTable('preferences')) { + $table = $schema->getTable('preferences'); + if (!$table->hasIndex('preferences_app_key')) { + $output->writeln('<info>Adding preferences_app_key index to the oc_preferences table, this can take some time...</info>'); + + $table->addIndex(['appid', 'configkey'], 'preferences_app_key'); + $this->connection->migrateToSchema($schema->getWrappedSchema()); + $updated = true; + $output->writeln('<info>oc_properties table updated successfully.</info>'); + } + } + if (!$updated) { $output->writeln('<info>Done.</info>'); } |