mirror of
https://github.com/opelly27/WinStudentGoalTracker.git
synced 2026-05-20 06:27:37 +00:00
Update to SQL objects and CSS adjustment
This commit is contained in:
@@ -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 ;
|
||||
|
||||
Reference in New Issue
Block a user