Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Citharel <tcit@tcit.fr>2019-10-06 16:04:27 +0300
committerThomas Citharel <tcit@tcit.fr>2019-10-07 23:03:15 +0300
commit90e5850cc48abd026228233d11930a82fcf18220 (patch)
treedf3d83fb368913cf4b15de0a1ba1a161d618c34f /core/Command
parent1843ff60fd65b3ea8496ad991d8e905d76222cdf (diff)
Add index on calendarid for calendarobject_props table
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
Diffstat (limited to 'core/Command')
-rw-r--r--core/Command/Db/AddMissingIndices.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/core/Command/Db/AddMissingIndices.php b/core/Command/Db/AddMissingIndices.php
index 0bb6658e85e..02c89992105 100644
--- a/core/Command/Db/AddMissingIndices.php
+++ b/core/Command/Db/AddMissingIndices.php
@@ -221,6 +221,19 @@ class AddMissingIndices extends Command {
}
}
+ $output->writeln('<info>Check indices of the calendarobjects_props table.</info>');
+ if ($schema->hasTable('calendarobjects_props')) {
+ $table = $schema->getTable('calendarobjects_props');
+ if (!$table->hasIndex('calendarobject_calid_index')) {
+ $output->writeln('<info>Adding calendarobject_calid_index index to the calendarobjects_props table, this can take some time...</info>');
+
+ $table->addIndex(['calendarid', 'calendartype'], 'calendarobject_calid_index');
+ $this->connection->migrateToSchema($schema->getWrappedSchema());
+ $updated = true;
+ $output->writeln('<info>calendarobjects_props table updated successfully.</info>');
+ }
+ }
+
if (!$updated) {
$output->writeln('<info>Done.</info>');
}