31 lines
740 B
Go
31 lines
740 B
Go
package migrations
|
|
|
|
import (
|
|
"database/sql"
|
|
|
|
bindata "github.com/status-im/migrate/v4/source/go_bindata"
|
|
|
|
"github.com/status-im/status-go/sqlite"
|
|
)
|
|
|
|
// Migrate applies migrations.
|
|
// see Migrate in vendor/status-go/sqlite/migrate.go
|
|
func Migrate(db *sql.DB, customSteps []*sqlite.PostStep) error {
|
|
return sqlite.Migrate(db, bindata.Resource(
|
|
AssetNames(),
|
|
func(name string) ([]byte, error) {
|
|
return Asset(name)
|
|
},
|
|
), customSteps, nil)
|
|
}
|
|
|
|
// MigrateTo is used for testing purposes
|
|
func MigrateTo(db *sql.DB, customSteps []*sqlite.PostStep, untilVersion uint) error {
|
|
return sqlite.Migrate(db, bindata.Resource(
|
|
AssetNames(),
|
|
func(name string) ([]byte, error) {
|
|
return Asset(name)
|
|
},
|
|
), customSteps, &untilVersion)
|
|
}
|