Updates to encompass benchmarks

This commit is contained in:
ivan-pelly
2026-03-07 16:10:55 -08:00
parent 69e96403f4
commit 3d531298e2
65 changed files with 2505 additions and 86 deletions
@@ -0,0 +1,7 @@
CREATE TABLE `progress_event_benchmark` (
`id_progress_event_benchmark` char(36) NOT NULL DEFAULT (uuid()),
`id_progress_event` char(36) NOT NULL,
`id_benchmark` char(36) NOT NULL,
`created_at` datetime NOT NULL,
PRIMARY KEY (`id_progress_event_benchmark`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;