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
+4
View File
@@ -6,6 +6,10 @@ CREATE TABLE `goal` (
`description` text,
`category` varchar(255) DEFAULT NULL,
`baseline` text,
`target_completion_date` date DEFAULT NULL,
`close_date` date DEFAULT NULL,
`achieved` tinyint(1) DEFAULT NULL,
`close_notes` text,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id_goal`),