10 lines
183 B
Go
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
|
|
}
|