Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,8 @@ protected CaseDataDto buildCase(PersonDto person, ExternalMessageDto externalMes
caseDto.setVaccinationStatus(externalMessageDto.getVaccinationStatus());
caseDto.getHospitalization().setAdmittedToHealthFacility(externalMessageDto.getAdmittedToHealthFacility());

caseDto.setAdditionalDetails(externalMessageDto.getCaseComments());

postBuildCase(caseDto, externalMessageDto);

return caseDto;
Expand Down
5 changes: 5 additions & 0 deletions sormas-backend/src/main/resources/sql/sormas_schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -15362,4 +15362,9 @@ ALTER TABLE symptoms_history ADD COLUMN IF NOT EXISTS otherneurolocalsymptomtext

INSERT INTO schema_version (version_number, comment) VALUES (612, '#13797 - Malaria and Dengue requirements');

ALTER TABLE externalmessage ALTER COLUMN casecomments TYPE text;
ALTER TABLE externalmessage_history ALTER COLUMN casecomments TYPE text;

INSERT INTO schema_version (version_number, comment) VALUES (613, '#13879 - Increased length of case comments');

-- *** Insert new sql commands BEFORE this line. Remember to always consider _history tables. ***
Loading