Added persistent prompt to student progress report

This commit is contained in:
ivan-pelly
2026-04-10 15:31:56 -07:00
parent d4a580ffae
commit b287276ec0
21 changed files with 606 additions and 11 deletions
+7
View File
@@ -0,0 +1,7 @@
CREATE TABLE `ReportPrompt` (
`id_ReportPrompt` char(36) NOT NULL DEFAULT (uuid()),
`prompt` text NOT NULL,
`reportname` char(100) NOT NULL,
`id_program` char(36) DEFAULT 'NULL',
PRIMARY KEY (`id_ReportPrompt`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;