36 lines
873 B
PHP
36 lines
873 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2020 F7cloud GmbH and F7cloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Mail\Migration;
|
|
|
|
use OCP\IDBConnection;
|
|
use OCP\Migration\IOutput;
|
|
use OCP\Migration\SimpleMigrationStep;
|
|
|
|
class Version1030Date20200228105714 extends SimpleMigrationStep {
|
|
/** @var IDBConnection */
|
|
protected $connection;
|
|
|
|
public function __construct(IDBConnection $connection) {
|
|
$this->connection = $connection;
|
|
}
|
|
|
|
/**
|
|
* @return void
|
|
*/
|
|
#[\Override]
|
|
public function postSchemaChange(IOutput $output, \Closure $schemaClosure, array $options) {
|
|
// Force a re-sync, so the old favorites inbox vanishes
|
|
$update = $this->connection->getQueryBuilder();
|
|
$update->update('mail_accounts')
|
|
->set('last_mailbox_sync', $update->createNamedParameter(0));
|
|
$update->executeStatement();
|
|
}
|
|
}
|