10 lines
183 B
Go
10 lines
183 B
Go
package schemaversion
|
|
|
|
import "context"
|
|
|
|
// V4 is a no-op migration
|
|
func V4(_ context.Context, dashboard map[string]interface{}) error {
|
|
dashboard["schemaVersion"] = 4
|
|
return nil
|
|
}
|