Skip to content

Commit

Permalink
add chlamydia to supported diseases table (#8355)
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbywells52 authored Dec 11, 2024
1 parent 3b272d0 commit 74c1b4a
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions backend/src/main/resources/db/changelog/db.changelog-master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5701,3 +5701,21 @@ databaseChangeLog:
- sql:
sql: DELETE FROM ${database.defaultSchemaName}.supported_disease WHERE name = 'Gonorrhea';

- changeSet:
id: add-chlamydia-to-supported_disease-table
author: [email protected]
comment: Add chlamydia to the supported_disease table.
changes:
- tagDatabase:
tag: add-chlamydia-to-supported_disease-table
- sql:
sql: |
INSERT INTO ${database.defaultSchemaName}.supported_disease (
internal_id,
name,
loinc)
VALUES
(gen_random_uuid(), 'Chlamydia', 'LP14298-1')
rollback:
- sql:
sql: DELETE FROM ${database.defaultSchemaName}.supported_disease WHERE name = 'Chlamydia';

0 comments on commit 74c1b4a

Please sign in to comment.