mirror of
https://github.com/tulir/mautrix-whatsapp
synced 2024-11-05 14:29:09 +01:00
13 lines
285 B
Go
13 lines
285 B
Go
package upgrades
|
|
|
|
import (
|
|
"database/sql"
|
|
|
|
"go.mau.fi/whatsmeow/store/sqlstore"
|
|
)
|
|
|
|
func init() {
|
|
upgrades[24] = upgrade{"Add whatsmeow state store", func(tx *sql.Tx, ctx context) error {
|
|
return sqlstore.Upgrades[0](tx, sqlstore.NewWithDB(ctx.db, ctx.dialect.String(), nil))
|
|
}}
|
|
}
|