Database updates

This commit is contained in:
ivan-pelly
2026-02-21 08:01:29 -08:00
parent fa0903e7be
commit c9ed34ddbb
49 changed files with 699 additions and 331 deletions
@@ -0,0 +1,17 @@
DELIMITER ;;
CREATE DEFINER=`root`@`%` PROCEDURE `sp_ProgressEvent_GetById`(IN p_id_progress_event CHAR(36))
BEGIN
SELECT
id_progress_event,
id_student,
id_goal,
id_user_created,
content,
is_sensitive,
created_at,
updated_at
FROM progress_event
WHERE id_progress_event = p_id_progress_event
LIMIT 1;
END;;
DELIMITER ;