diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2017-09-24 14:53:30 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2017-09-25 10:27:46 +0200 |
commit | 4ac32223dab6d5e2ea609c08646065e33ee947ab (patch) | |
tree | d8f1763e7e578fa6b4587332f33c055b66327f68 /apps/dav/lib | |
parent | 4ee731c1ab20b3fb62c9e46abcc3ed717b891e59 (diff) | |
download | nextcloud-server-4ac32223dab6d5e2ea609c08646065e33ee947ab.tar.gz nextcloud-server-4ac32223dab6d5e2ea609c08646065e33ee947ab.zip |
Add indexes to cards and cards_properties tables
Fixes #6170
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/dav/lib')
-rw-r--r-- | apps/dav/lib/Migration/Version1004Date20170924124212.php | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/apps/dav/lib/Migration/Version1004Date20170924124212.php b/apps/dav/lib/Migration/Version1004Date20170924124212.php new file mode 100644 index 00000000000..425747af742 --- /dev/null +++ b/apps/dav/lib/Migration/Version1004Date20170924124212.php @@ -0,0 +1,50 @@ +<?php +/** + * @copyright 2017, Roeland Jago Douma <roeland@famdouma.nl> + * + * @author Roeland Jago Douma <roeland@famdouma.nl> + * + * @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 <http://www.gnu.org/licenses/>. + * + */ +namespace OCA\DAV\Migration; + +use Doctrine\DBAL\Schema\Schema; +use OCP\Migration\SimpleMigrationStep; +use OCP\Migration\IOutput; + +class Version1004Date20170924124212 extends SimpleMigrationStep { + + /** + * @param IOutput $output + * @param \Closure $schemaClosure The `\Closure` returns a `Schema` + * @param array $options + * @return null|Schema + * @since 13.0.0 + */ + public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options) { + /** @var Schema $schema */ + $schema = $schemaClosure(); + + $table = $schema->getTable('cards'); + $table->addIndex(['addressbookid']); + + $table = $schema->getTable('cards_properties'); + $table->addIndex(['addressbookid']); + + return $schema; + } +} |