← Back
Editing: Version0110Date20180825195812.php
<?php declare(strict_types=1); /** * SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-only */ namespace OCA\Mail\Migration; use OCP\DB\ISchemaWrapper; use OCP\Migration\IOutput; use OCP\Migration\SimpleMigrationStep; /** * @psalm-api */ class Version0110Date20180825195812 extends SimpleMigrationStep { /** * @param IOutput $output * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` * @param array $options * @return null|ISchemaWrapper * @throws \Doctrine\DBAL\Schema\SchemaException */ #[\Override] public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options) { /** @var ISchemaWrapper $schema */ $schema = $schemaClosure(); $table = $schema->getTable('mail_attachments'); if ($table->hasIndex('mail_attachments_userid_index')) { $table->dropIndex('mail_attachments_userid_index'); } if (!$table->hasIndex('mail_attach_userid_index')) { $table->addIndex(['user_id'], 'mail_attach_userid_index'); } return $schema; } }
Save File
Cancel