Merge pull request #11527 from nextcloud/fix/10926/share_indexes

Add uid_owner and uid_initiator share tabe indices
This commit is contained in:
Roeland Jago Douma 2018-10-02 17:16:07 +02:00 committed by GitHub
commit ac8d4b2f31
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 24 additions and 0 deletions

View File

@ -70,6 +70,12 @@ class Application extends App {
if (!$table->hasIndex('parent_index')) {
$subject->addHintForMissingSubject($table->getName(), 'parent_index');
}
if (!$table->hasIndex('uid_owner')) {
$subject->addHintForMissingSubject($table->getName(), 'uid_owner');
}
if (!$table->hasIndex('uid_initiator')) {
$subject->addHintForMissingSubject($table->getName(), 'uid_initiator');
}
}
if ($schema->hasTable('filecache')) {

View File

@ -98,6 +98,22 @@ class AddMissingIndices extends Command {
$updated = true;
$output->writeln('<info>Share table updated successfully.</info>');
}
if (!$table->hasIndex('uid_owner')) {
$output->writeln('<info>Adding additional owner index to the share table, this can take some time...</info>');
$table->addIndex(['uid_owner'], 'owner_index');
$this->connection->migrateToSchema($schema->getWrappedSchema());
$updated = true;
$output->writeln('<info>Share table updated successfully.</info>');
}
if (!$table->hasIndex('uid_initiator')) {
$output->writeln('<info>Adding additional initiator index to the share table, this can take some time...</info>');
$table->addIndex(['uid_initiator'], 'initiator_index');
$this->connection->migrateToSchema($schema->getWrappedSchema());
$updated = true;
$output->writeln('<info>Share table updated successfully.</info>');
}
}
if ($schema->hasTable('filecache')) {

View File

@ -403,6 +403,8 @@ class Version13000Date20170718121200 extends SimpleMigrationStep {
$table->addIndex(['token'], 'token_index');
$table->addIndex(['share_with'], 'share_with_index');
$table->addIndex(['parent'], 'parent_index');
$table->addIndex(['uid_owner'], 'owner_index');
$table->addIndex(['uid_initiator'], 'initiator_index');
}
if (!$schema->hasTable('jobs')) {