connection = $connection; } /** * @param IOutput $output * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` * @param array $options * * @return null|ISchemaWrapper */ #[\Override] public function changeSchema(IOutput $output, Closure $schemaClosure, array $options) { /** @var ISchemaWrapper $schema */ $schema = $schemaClosure(); $mailboxTable = $schema->getTable('mail_mailboxes'); $mailboxTable->addColumn('special_use', Types::STRING, [ 'length' => 255, 'default' => '[]', ]); return $schema; } /** * @return void */ #[\Override] public function postSchemaChange(IOutput $output, \Closure $schemaClosure, array $options) { // Force a re-sync $update = $this->connection->getQueryBuilder(); $update->update('mail_accounts') ->set('last_mailbox_sync', $update->createNamedParameter(0)); $update->executeStatement(); } }