-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add chlamydia to supported diseases table (#8355)
- Loading branch information
1 parent
3b272d0
commit 74c1b4a
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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'; |