Skip to content

Commit

Permalink
Merge pull request #983 from CDCgov/story-621-metadata_db_migration
Browse files Browse the repository at this point in the history
621: Order/Result Linking Fields Added to Metadata Table
  • Loading branch information
halprin authored Mar 28, 2024
2 parents 3943ed3 + 5ceb740 commit eee8c35
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions etor/databaseMigrations/metadata.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,3 +84,28 @@ databaseChangeLog:
- column:
name: message_type
type: message_type
- changeSet:
id: 5
author: halprin
labels: update-metadata-table
context: metadata
comment: update partner metadata table for order and result linking
changes:
- addColumn:
tableName: metadata
columns: # the size of the varchars below are based on the field's HL7 spec size
- column:
name: placer_order_number
type: varchar(427)
- column:
name: sending_application_id
type: varchar(227)
- column:
name: sending_facility_id
type: varchar(227)
- column:
name: receiving_application_id
type: varchar(227)
- column:
name: receiving_facility_id
type: varchar(227)

0 comments on commit eee8c35

Please sign in to comment.