Skip to content

Commit

Permalink
Merge branch 'main' into merethe/7982-mult-providers-db
Browse files Browse the repository at this point in the history
  • Loading branch information
mehansen authored Dec 12, 2024
2 parents 6ba4117 + 74c1b4a commit 4328ffd
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 @@ -5696,6 +5696,24 @@ databaseChangeLog:
rollback:
- 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';
- changeSet:
id: create-facility_providers-table
author: [email protected]
Expand Down

0 comments on commit 4328ffd

Please sign in to comment.