Files
grafana/apps/dashboard/pkg/migration/schemaversion/v3.go
T

10 lines
183 B
Go

package schemaversion
import "context"
// V3 is a no-op migration
func V3(_ context.Context, dashboard map[string]interface{}) error {
dashboard["schemaVersion"] = 3
return nil
}