Skip to content

Commit

Permalink
Merge pull request #13212 from SORMAS-Foundation/change-#13204-RSV-di…
Browse files Browse the repository at this point in the history
…sease-variants

RSV disease variants #13204
  • Loading branch information
leventegal-she authored Dec 16, 2024
2 parents 2a94140 + 4a46f94 commit cc710f7
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions sormas-backend/src/main/resources/sql/sormas_schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -13711,4 +13711,17 @@ VALUES (nextval('entity_seq'), generate_base32_uuid(), now(), now(), 'DISEASE_VA
'INFLUENZA', jsonb_build_object('hasDetails', true));

INSERT INTO schema_version (version_number, comment) VALUES (554, 'Add New Influenza Disease Types and Modify Display for SORMAS-LuxembourgAdd #13183');

-- 2024-12-12 RSV disease variants #13204
INSERT INTO customizableenumvalue(id, uuid, changedate, creationdate, datatype, value, caption, diseases)
VALUES (nextval('entity_seq'), generate_base32_uuid(), now(), now(), 'DISEASE_VARIANT', ' A', 'Type A',
'RESPIRATORY_SYNCYTIAL_VIRUS');
INSERT INTO customizableenumvalue(id, uuid, changedate, creationdate, datatype, value, caption, diseases)
VALUES (nextval('entity_seq'), generate_base32_uuid(), now(), now(), 'DISEASE_VARIANT', ' B', 'Type B',
'RESPIRATORY_SYNCYTIAL_VIRUS');
INSERT INTO customizableenumvalue(id, uuid, changedate, creationdate, datatype, value, caption, diseases)
VALUES (nextval('entity_seq'), generate_base32_uuid(), now(), now(), 'DISEASE_VARIANT', ' AB', 'Type A+B',
'RESPIRATORY_SYNCYTIAL_VIRUS');

INSERT INTO schema_version (version_number, comment) VALUES (555, 'RSV disease variants #13204');
-- *** Insert new sql commands BEFORE this line. Remember to always consider _history tables. ***

0 comments on commit cc710f7

Please sign in to comment.