You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sormas-backend/src/main/resources/sql/sormas_schema.sql
+9-1Lines changed: 9 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -16401,6 +16401,14 @@ ALTER TABLE testreport_history ADD COLUMN IF NOT EXISTS fourfoldincreaseantibody
16401
16401
16402
16402
INSERT INTO schema_version (version_number, comment) VALUES (641, 'Malaria and Dengue DD and Lab message processing fixes');
16403
16403
16404
+
16405
+
-- 2025-06-26 Performed by reference laboratory missing for lab messages
16406
+
16407
+
ALTER TABLE testreport ADD COLUMN IF NOT EXISTS performedbyreferencelaboratory boolean;
16408
+
ALTER TABLE testreport_history ADD COLUMN IF NOT EXISTS performedbyreferencelaboratory boolean;
16409
+
16410
+
INSERT INTO schema_version (version_number, comment) VALUES (642, '#14058 - Performed by reference laboratory not toggled');
16411
+
16404
16412
-- 2026-06-29 Remove Malaria-specific "Result details" pathogen test field (issue #14016)
16405
16413
-- The Malaria resultdetails field duplicated the generic "Test result details" (testresulttext) field on the
16406
16414
-- pathogen test form. Drop it and fold any captured value into testresulttext so no free-text result is lost.
@@ -16458,6 +16466,6 @@ END $$;
16458
16466
ALTER TABLE pathogentest DROP COLUMN IF EXISTS resultdetails;
16459
16467
ALTER TABLE pathogentest_history DROP COLUMN IF EXISTS resultdetails;
16460
16468
ALTER TABLE pathogentest ENABLE TRIGGER versioning_trigger;
16461
-
INSERT INTO schema_version (version_number, comment) VALUES (642, 'Remove Malaria-specific result details pathogen test column, preserving values into testresulttext issue #14016');
16469
+
INSERT INTO schema_version (version_number, comment) VALUES (643, 'Remove Malaria-specific result details pathogen test column, preserving values into testresulttext issue #14016');
16462
16470
16463
16471
-- *** Insert new sql commands BEFORE this line. Remember to always consider _history tables. ***
Copy file name to clipboardExpand all lines: sormas-backend/src/test/java/de/symeda/sormas/backend/externalmessage/labmessage/TestReportFacadeEjbMappingTest.java
0 commit comments