Renamed some of the goal fields to align with business logic

This commit is contained in:
ivan-pelly
2026-03-14 16:30:17 -07:00
parent 7f91e2e557
commit 4d9b83c327
50 changed files with 279 additions and 149 deletions
+2 -2
View File
@@ -3,9 +3,9 @@ CREATE TABLE `goal` (
`id_goal_parent` char(36) DEFAULT NULL,
`id_student` char(36) DEFAULT NULL,
`id_user_created` char(36) DEFAULT NULL,
`title` varchar(255) DEFAULT NULL,
`description` text,
`category` varchar(100) DEFAULT NULL,
`category` varchar(255) DEFAULT NULL,
`baseline` text,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id_goal`),