← Back
Editing: Version2300Date20221205160349.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\QueryBuilder\IQueryBuilder; use OCP\DB\Types; use OCP\IDBConnection; use OCP\Migration\IOutput; use OCP\Migration\SimpleMigrationStep; /** * @psalm-api */ class Version2300Date20221205160349 extends SimpleMigrationStep { private IDBConnection $db; public function __construct(IDBConnection $db) { $this->db = $db; } /** * @param IOutput $output * @param Closure $schemaClosure * @param array $options * @return null|ISchemaWrapper */ #[\Override] public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ?ISchemaWrapper { /** @var ISchemaWrapper $schema */ $schema = $schemaClosure(); $table = $schema->getTable('mail_mailboxes'); if (!$table->hasColumn('my_acls')) { $table->addColumn('my_acls', Types::STRING, [ 'length' => 32, 'notnull' => false, ]); } return $schema; } /** * @param IOutput $output * @param Closure $schemaClosure * @param array $options */ #[\Override] public function postSchemaChange(IOutput $output, Closure $schemaClosure, array $options): void { $qb = $this->db->getQueryBuilder(); $qb->update('mail_accounts') ->set('last_mailbox_sync', $qb->createNamedParameter(0, IQueryBuilder::PARAM_INT)); $qb->executeStatement(); } }
Save File
Cancel