aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2023-04-13 17:19:26 +0200
committerRobin Appelman <robin@icewind.nl>2023-04-28 15:08:08 +0200
commitdb43d903877a8b90b78cafb404b1e7101bfb2c15 (patch)
treeca3d18310a9418cee5368550ad2e42085206fa9d /core
parentf5e2b0b22f51cdb67c06c368e921052d25aacc2e (diff)
downloadnextcloud-server-db43d903877a8b90b78cafb404b1e7101bfb2c15.tar.gz
nextcloud-server-db43d903877a8b90b78cafb404b1e7101bfb2c15.zip
add new index in repair step instead of on-migrate
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'core')
-rw-r--r--core/Application.php3
-rw-r--r--core/Command/Db/AddMissingIndices.php8
-rw-r--r--core/Migrations/Version27000Date20220613163520.php2
3 files changed, 12 insertions, 1 deletions
diff --git a/core/Application.php b/core/Application.php
index 4ebbada95e6..2e354610154 100644
--- a/core/Application.php
+++ b/core/Application.php
@@ -239,6 +239,9 @@ class Application extends App {
if (!$table->hasIndex('mounts_class_index')) {
$subject->addHintForMissingSubject($table->getName(), 'mounts_class_index');
}
+ if (!$table->hasIndex('mounts_user_root_path_index')) {
+ $subject->addHintForMissingSubject($table->getName(), 'mounts_user_root_path_index');
+ }
}
}
);
diff --git a/core/Command/Db/AddMissingIndices.php b/core/Command/Db/AddMissingIndices.php
index e22d0fddeca..b317f44b499 100644
--- a/core/Command/Db/AddMissingIndices.php
+++ b/core/Command/Db/AddMissingIndices.php
@@ -465,6 +465,14 @@ class AddMissingIndices extends Command {
$updated = true;
$output->writeln('<info>oc_mounts table updated successfully.</info>');
}
+ if (!$table->hasIndex('mounts_user_root_path_index')) {
+ $output->writeln('<info>Adding mounts_user_root_path_index index to the oc_mounts table, this can take some time...</info>');
+
+ $table->addIndex(['user_id', 'root_id', 'mount_point'], 'mounts_user_root_path_index', [], ['lengths' => [null, null, 128]]);
+ $this->connection->migrateToSchema($schema->getWrappedSchema());
+ $updated = true;
+ $output->writeln('<info>oc_mounts table updated successfully.</info>');
+ }
}
if (!$updated) {
diff --git a/core/Migrations/Version27000Date20220613163520.php b/core/Migrations/Version27000Date20220613163520.php
index 5f327e69c96..4217f3b3270 100644
--- a/core/Migrations/Version27000Date20220613163520.php
+++ b/core/Migrations/Version27000Date20220613163520.php
@@ -43,7 +43,7 @@ class Version27000Date20220613163520 extends SimpleMigrationStep {
$table = $schema->getTable('mounts');
if ($table->hasIndex('mounts_user_root_index')) {
$table->dropIndex('mounts_user_root_index');
- $table->addIndex(['user_id', 'root_id', 'mount_point'], 'mounts_user_root_path_index', [], ['lengths' => [null, null, 128]]);
+ // new index gets added with "add missing indexes"
}
return $schema;