mirror of
https://github.com/nextcloud/server.git
synced 2026-04-24 07:39:23 -04:00
And remove all the duplication in the subclasses Signed-off-by: Carl Schwan <carlschwan@kde.org>
36 lines
824 B
PHP
36 lines
824 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
/**
|
|
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
namespace OC\Core\Migrations;
|
|
|
|
use Closure;
|
|
use OCP\DB\ISchemaWrapper;
|
|
use OCP\Migration\IOutput;
|
|
use OCP\Migration\SimpleMigrationStep;
|
|
use Override;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
class Version29000Date20240131122720 extends SimpleMigrationStep {
|
|
|
|
#[Override]
|
|
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;
|
|
}
|
|
}
|