From 47e14c9a79c15be14e2d899a5b931f1d0cf845b5 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 17 Mar 2021 09:19:42 +0100 Subject: [PATCH] Add missing index on the user column Signed-off-by: Joas Schilling --- .../Version21000Date20210309185127.php | 52 +++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 core/Migrations/Version21000Date20210309185127.php diff --git a/core/Migrations/Version21000Date20210309185127.php b/core/Migrations/Version21000Date20210309185127.php new file mode 100644 index 0000000000..01cbdcb864 --- /dev/null +++ b/core/Migrations/Version21000Date20210309185127.php @@ -0,0 +1,52 @@ + + * + * @author Joas Schilling + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + + +namespace OC\Core\Migrations; + +use Closure; +use OCP\DB\ISchemaWrapper; +use OCP\Migration\IOutput; +use OCP\Migration\SimpleMigrationStep; + +class Version21000Date20210309185127 extends SimpleMigrationStep { + /** + * @param IOutput $output + * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` + * @param array $options + * @return null|ISchemaWrapper + */ + public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ?ISchemaWrapper { + /** @var ISchemaWrapper $schema */ + $schema = $schemaClosure(); + + $table = $schema->getTable('known_users'); + if (!$table->hasIndex('ku_known_user')) { + $table->addIndex(['known_user'], 'ku_known_user'); + return $schema; + } + + return null; + } +}