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
+9
View File
@@ -0,0 +1,9 @@
CREATE TABLE `benchmark` (
`id_benchmark` char(36) NOT NULL DEFAULT (uuid()),
`id_goal` char(36) NOT NULL,
`id_user_created` char(36) NOT NULL,
`benchmark` text NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id_benchmark`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
@@ -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;