Dashboard Migrations: V3 - no-op; remove v3 from DashboardMigrator.ts (#112239)

This commit is contained in:
Haris Rozajac
2025-10-14 18:39:24 -06:00
committed by GitHub
parent 3895849c85
commit e5ef29c202
8 changed files with 260 additions and 20 deletions
@@ -0,0 +1,9 @@
package schemaversion
import "context"
// V3 is a no-op migration
func V3(_ context.Context, dashboard map[string]interface{}) error {
dashboard["schemaVersion"] = 3
return nil
}