mautrix-whatsapp/database/upgrades/2020-07-10-update-crypto-store.go

14 lines
256 B
Go
Raw Normal View History

2020-07-10 14:56:45 +02:00
package upgrades
import (
"database/sql"
"maunium.net/go/mautrix/crypto"
)
func init() {
upgrades[16] = upgrade{"Add account_id to crypto store", func(tx *sql.Tx, c context) error {
return crypto.SQLStoreMigrations[1](tx, c.dialect.String())
}}
}