diff options
author | Johannes Merkel <mail@johannesgge.de> | 2024-02-04 23:27:39 +0100 |
---|---|---|
committer | Johannes Merkel <mail@johannesgge.de> | 2024-02-18 21:02:42 +0100 |
commit | 21e8aadc1f3a25e3084077ebc7efeea37d369142 (patch) | |
tree | beb2ad543a8f108060a6861735f2119dc235284a /core/Migrations/Version29000Date20240131122720.php | |
parent | 85f28856cfd75fe17f490f098c5657090bc00412 (diff) | |
download | nextcloud-server-21e8aadc1f3a25e3084077ebc7efeea37d369142.tar.gz nextcloud-server-21e8aadc1f3a25e3084077ebc7efeea37d369142.zip |
fix(db): remove redundant indices in properties
Signed-off-by: Johannes Merkel <mail@johannesgge.de>
Diffstat (limited to 'core/Migrations/Version29000Date20240131122720.php')
-rw-r--r-- | core/Migrations/Version29000Date20240131122720.php | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/core/Migrations/Version29000Date20240131122720.php b/core/Migrations/Version29000Date20240131122720.php new file mode 100644 index 00000000000..0273fd702c8 --- /dev/null +++ b/core/Migrations/Version29000Date20240131122720.php @@ -0,0 +1,59 @@ +<?php + +declare(strict_types=1); + +/** + * @copyright Copyright (c) 2024 Johannes Merkel <mail@johannesgge.de> + * + * @author Johannes Merkel <mail@johannesgge.de> + * + * @license AGPL-3.0-or-later + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */ + +namespace OC\Core\Migrations; + +use Closure; +use OCP\DB\ISchemaWrapper; +use OCP\Migration\IOutput; +use OCP\Migration\SimpleMigrationStep; + +/** + * + */ +class Version29000Date20240131122720 extends SimpleMigrationStep { + + /** + * @param IOutput $output + * @param Closure(): ISchemaWrapper $schemaClosure + * @param array $options + * @return null|ISchemaWrapper + */ + public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ?ISchemaWrapper { + /** @var ISchemaWrapper $schema */ + $schema = $schemaClosure(); + + $tableProperties = $schema->getTable('properties'); + + if ($tableProperties->hasIndex('property_index') && + $tableProperties->hasIndex('properties_path_index')) { + + $tableProperties->dropIndex('property_index'); + } + + return $schema; + } +} |