Skip to content

Commit

Permalink
Merge pull request #4555 from nextcloud/backport/4553/stable27
Browse files Browse the repository at this point in the history
  • Loading branch information
juliushaertl committed Jul 20, 2023
2 parents cf356b3 + aefd05e commit 94b8cc5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/Listeners/AddMissingIndicesListener.php
Expand Up @@ -38,6 +38,6 @@ public function handle(Event $event): void {
return;
}

$event->addMissingIndex('text_steps', 'ts_session', ['session_id']);
$event->addMissingIndex('text_steps', 'textstep_session', ['session_id']);
}
}
2 changes: 1 addition & 1 deletion lib/Migration/Version010000Date20190617184535.php
Expand Up @@ -130,7 +130,7 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt
$table->setPrimaryKey(['id']);
$table->addIndex(['document_id'], 'rd_steps_did_idx');
$table->addIndex(['version'], 'rd_steps_version_idx');
$table->addIndex(['session_id'], 'ts_session');
$table->addIndex(['session_id'], 'textstep_session');
}
return $schema;
}
Expand Down

0 comments on commit 94b8cc5

Please sign in to comment.