Dashboard Migrations: V4 - no-op and clean up dead code from DashboardMigrator.ts (#112225)

This commit is contained in:
Haris Rozajac
2025-10-14 14:38:31 -06:00
committed by GitHub
parent 3d112755de
commit 01c4cb1fac
8 changed files with 220 additions and 16 deletions
@@ -0,0 +1,9 @@
package schemaversion
import "context"
// V4 is a no-op migration
func V4(_ context.Context, dashboard map[string]interface{}) error {
dashboard["schemaVersion"] = 4
return nil
}