Skip to content

Commit

Permalink
Fix missing metrics migration (#1522)
Browse files Browse the repository at this point in the history
we missed it in #1491
  • Loading branch information
ChrisSchinnerl authored Sep 11, 2024
2 parents 94a3a69 + a2e4ee1 commit c5554a5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions internal/sql/migrations.go
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,12 @@ var (
return performMigration(ctx, tx, migrationsFs, dbIdentifier, "00002_idx_wallet_metrics_immature", log)
},
},
{
ID: "00003_unix_ms",
Migrate: func(tx Tx) error {
return performMigration(ctx, tx, migrationsFs, dbIdentifier, "00003_unix_ms", log)
},
},
}
}
)
Expand Down

0 comments on commit c5554a5

Please sign in to comment.