Skip to content

Commit

Permalink
Add Gonorrhea to SupportedDiseases (#8319)
Browse files Browse the repository at this point in the history
  • Loading branch information
mpbrown authored Nov 25, 2024
1 parent a9bdb2f commit 593c56c
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion backend/src/main/resources/db/changelog/db.changelog-master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5680,4 +5680,24 @@ databaseChangeLog:
sql: |
UPDATE ${database.defaultSchemaName}.supported_disease
SET name = 'Hepatitis-C'
WHERE name = 'Hepatitis C' AND loinc = 'LP14400-3'
WHERE name = 'Hepatitis C' AND loinc = 'LP14400-3'
- changeSet:
id: add-gonorrhea-to-supported_disease-table
author: [email protected]
comment: Add Gonorrhea to the supported_disease table.
changes:
- tagDatabase:
tag: add-gonorrhea-to-supported_disease-table
- sql:
sql: |
INSERT INTO ${database.defaultSchemaName}.supported_disease (
internal_id,
name,
loinc)
VALUES
(gen_random_uuid(), 'Gonorrhea', 'LP14316-1')
rollback:
- sql:
sql: DELETE FROM ${database.defaultSchemaName}.supported_disease WHERE name = 'Gonorrhea';

0 comments on commit 593c56c

Please sign in to comment.