From 08f9722b591b528792cd79dec036e4e74da1c361 Mon Sep 17 00:00:00 2001 From: Chris Sherwood Date: Wed, 28 Jan 2026 13:31:03 -0800 Subject: [PATCH] fix(migrations): Fix timestamp ordering for builder_tag migration The migration file used a 10-digit timestamp (1769324448) while all other migrations use 13-digit timestamps. When sorted numerically, this caused the builder_tag ALTER TABLE migration to run before the benchmark_results CREATE TABLE migration, breaking fresh installs. Renamed: 1769324448 -> 1769324448000 (append 000 to match 13-digit format) Co-Authored-By: Claude Opus 4.5 --- ...s.ts => 1769324448000_add_builder_tag_to_benchmark_results.ts} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename admin/database/migrations/{1769324448_add_builder_tag_to_benchmark_results.ts => 1769324448000_add_builder_tag_to_benchmark_results.ts} (100%) diff --git a/admin/database/migrations/1769324448_add_builder_tag_to_benchmark_results.ts b/admin/database/migrations/1769324448000_add_builder_tag_to_benchmark_results.ts similarity index 100% rename from admin/database/migrations/1769324448_add_builder_tag_to_benchmark_results.ts rename to admin/database/migrations/1769324448000_add_builder_tag_to_benchmark_results.ts