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(); } }