Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
ALTER TABLE NBS_DataIngest.dbo.elr_raw
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@rshanmugam-enquizit Consider using a if exists condition for the table and column since we can use the RunOnChange configuration.
Example: https://github.com/CDCgov/NEDSS-DataReporting/blob/main/liquibase-service/src/main/resources/db/rdb_modern/tables/007-create_nrt_investigation-001.sql#L123

ADD version VARCHAR(1);

ALTER TABLE NBS_DataIngest.dbo.elr_dlt
ALTER COLUMN dlt_status NVARCHAR(30);