mirror of
https://github.com/nextcloud/server.git
synced 2026-04-21 06:08:46 -04:00
And remove all the duplication in the subclasses Signed-off-by: Carl Schwan <carlschwan@kde.org>
34 lines
836 B
PHP
34 lines
836 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\DAV\Migration;
|
|
|
|
use Closure;
|
|
use OCP\DB\ISchemaWrapper;
|
|
use OCP\Migration\Attributes\DropIndex;
|
|
use OCP\Migration\IOutput;
|
|
use OCP\Migration\SimpleMigrationStep;
|
|
use Override;
|
|
|
|
#[DropIndex(table: 'cards')]
|
|
class Version1030Date20240205103243 extends SimpleMigrationStep {
|
|
#[Override]
|
|
public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ?ISchemaWrapper {
|
|
/** @var ISchemaWrapper $schema */
|
|
$schema = $schemaClosure();
|
|
|
|
$tableCards = $schema->getTable('cards');
|
|
|
|
if ($tableCards->hasIndex('cards_abiduri') && $tableCards->hasIndex('cards_abid')) {
|
|
$tableCards->dropIndex('cards_abid');
|
|
}
|
|
|
|
return $schema;
|
|
}
|
|
}
|