← Back
Editing: Version2010Date20221002201527.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\DB\Types; use OCP\IDBConnection; use OCP\Migration\IOutput; use OCP\Migration\SimpleMigrationStep; /** * @psalm-api */ class Version2010Date20221002201527 extends SimpleMigrationStep { /** @var IDBConnection */ protected $connection; public function __construct(IDBConnection $connection) { $this->connection = $connection; } /** * @param IOutput $output * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` * @param array $options * @return ISchemaWrapper */ #[\Override] public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ISchemaWrapper { /** @var ISchemaWrapper $schema */ $schema = $schemaClosure(); $accountsTable = $schema->getTable('mail_accounts'); $accountsTable->addColumn('archive_mailbox_id', Types::INTEGER, [ 'notnull' => false, 'default' => null, ]); return $schema; } /** * @return void */ #[\Override] public function postSchemaChange(IOutput $output, Closure $schemaClosure, array $options) { // Force a re-sync, so the values are propagated ASAP $update = $this->connection->getQueryBuilder(); $update->update('mail_accounts') ->set('last_mailbox_sync', $update->createNamedParameter(0)); $update->executeStatement(); } }
Save File
Cancel