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('drafts_mailbox_id', Types::INTEGER, [ 'notnull' => false, 'default' => null, ]); $accountsTable->addColumn('sent_mailbox_id', Types::INTEGER, [ 'notnull' => false, 'default' => null, ]); $accountsTable->addColumn('trash_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(); } }