Added Goals fields

This commit is contained in:
ivan-pelly
2026-03-15 09:35:58 -07:00
parent 242b1bce27
commit 53d0539d28
66 changed files with 1322 additions and 329 deletions
@@ -0,0 +1,11 @@
DELIMITER ;;
CREATE DEFINER=`root`@`%` PROCEDURE `sp_ProgressEventBenchmark_GetByEventId`(
IN p_id_progress_event CHAR(36)
)
BEGIN
SELECT
peb.id_benchmark AS benchmarkId
FROM progress_event_benchmark peb
WHERE peb.id_progress_event = p_id_progress_event;
END;;
DELIMITER ;