25 lines
569 B
Go
25 lines
569 B
Go
package migrations
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/grafana/grafana/pkg/util/xorm"
|
|
|
|
"github.com/grafana/grafana/pkg/services/sqlstore/migrator"
|
|
"github.com/grafana/grafana/pkg/setting"
|
|
)
|
|
|
|
func MigrateResourceStore(ctx context.Context, engine *xorm.Engine, cfg *setting.Cfg) error {
|
|
mg := migrator.NewScopedMigrator(engine, cfg, "resource")
|
|
mg.AddCreateMigration()
|
|
|
|
initResourceTables(mg)
|
|
|
|
sec := cfg.Raw.Section("database")
|
|
return mg.RunMigrations(
|
|
ctx,
|
|
sec.Key("migration_locking").MustBool(true),
|
|
sec.Key("locking_attempt_timeout_sec").MustInt(),
|
|
)
|
|
}
|