Files
deck/lib/Migration/Version10800Date20220422061816.php
Andy Scherzinger be11113d32 chore: Add SPDX header
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
2024-05-07 15:51:49 +02:00

82 lines
2.1 KiB
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Deck\Migration;
use Closure;
use Doctrine\DBAL\Schema\SchemaException;
use OCP\DB\ISchemaWrapper;
use OCP\Migration\IOutput;
use OCP\Migration\SimpleMigrationStep;
class Version10800Date20220422061816 extends SimpleMigrationStep {
/**
* @param IOutput $output
* @param Closure(): ISchemaWrapper $schemaClosure The `\Closure` returns a `ISchemaWrapper`
* @param array $options
* @return null|ISchemaWrapper
* @throws SchemaException
*/
public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ?ISchemaWrapper {
$schema = $schemaClosure();
$indexAdded = $this->addIndex($schema,
'deck_boards',
'idx_owner_modified',
[ 'owner', 'last_modified' ]
);
$indexAdded = $this->addIndex($schema,
'deck_board_acl',
'idx_participant_type',
[ 'participant', 'type']
) || $indexAdded;
$indexAdded = $this->addIndex($schema,
'deck_cards',
'idx_due_notified_archived_deleted', [
'duedate', 'notified', 'archived', 'deleted_at'
],
) || $indexAdded;
$indexAdded = $this->addIndex($schema,
'deck_cards',
'idx_last_editor', [
'last_editor' /*, 'description_prev' */
], [],
// Adding a partial index on the description_prev as it is only used for a NULL check
['lengths' => [null, 1]]
) || $indexAdded;
$indexAdded = $this->addIndex($schema,
'deck_attachment',
'idx_cardid_deletedat',
[ 'card_id', 'deleted_at']
) || $indexAdded;
$indexAdded = $this->addIndex($schema,
'deck_assigned_users',
'idx_card_participant',
[ 'card_id', 'participant']
) || $indexAdded;
return $indexAdded ? $schema : null;
}
private function addIndex(ISchemaWrapper $schema, string $table, string $indexName, array $columns, array $flags = [], array $options = []): bool {
$table = $schema->getTable($table);
if (!$table->hasIndex($indexName)) {
$table->addIndex($columns, $indexName, $flags, $options);
return true;
}
return false;
}
}