← Back
Editing: Version1130Date20220520062301.php
<?php declare(strict_types=1); /** * SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later */ namespace OCA\Mail\Migration; use Closure; use OCP\DB\ISchemaWrapper; use OCP\Migration\IOutput; use OCP\Migration\SimpleMigrationStep; /** * @psalm-api */ class Version1130Date20220520062301 extends SimpleMigrationStep { /** * @param IOutput $output * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` * @param array $options * @return null|ISchemaWrapper */ #[\Override] public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ?ISchemaWrapper { /** @var ISchemaWrapper $schema */ $schema = $schemaClosure(); $messagesTable = $schema->getTable('mail_messages'); if (!$messagesTable->hasIndex('mail_messages_mb_id_uid')) { $messagesTable->addIndex(['mailbox_id', 'uid'], 'mail_messages_mb_id_uid'); } return $schema; } }
Save File
Cancel