Update to SQL objects and CSS adjustment

This commit is contained in:
ivan-pelly
2026-03-03 11:48:10 -08:00
parent 3453096f89
commit 5b7bd8cfb4
11 changed files with 51 additions and 87 deletions
+6 -8
View File
@@ -2,16 +2,14 @@ DELIMITER ;;
CREATE DEFINER=`root`@`%` PROCEDURE `sp_Goal_GetAll`()
BEGIN
SELECT
id_goal,
id_goal_parent,
id_student,
id_user_created,
goalId,
goalParentId,
studentId,
title,
description,
category,
created_at,
updated_at
FROM goal
ORDER BY id_goal;
progressEventCount
FROM v_goal_card
ORDER BY goalId;
END;;
DELIMITER ;