bridgev2/legacymigrate: fix extra parameters
Some checks are pending
Go / Lint (latest) (push) Waiting to run
Go / Build (old, libolm) (push) Waiting to run
Go / Build (latest, libolm) (push) Waiting to run
Go / Build (old, goolm) (push) Waiting to run
Go / Build (latest, goolm) (push) Waiting to run

This commit is contained in:
Tulir Asokan 2024-10-01 20:20:07 +03:00
commit 260f642bf0

View file

@ -85,7 +85,7 @@ func (br *BridgeMain) LegacyMigrateWithAnotherUpgrader(renameTablesQuery, copyDa
if err != nil {
return err
}
_, err = br.DB.Exec(ctx, "DELETE FROM version", upgradesTo, compat)
_, err = br.DB.Exec(ctx, "DELETE FROM version")
if err != nil {
return err
}