Skip to content

Commit

Permalink
CNDIT-1729: Minor fix for liquibase script (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
sveselev authored Sep 25, 2024
1 parent 4a8cbbc commit 8ea27c5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ IF EXISTS (SELECT 1 FROM sysobjects WHERE name = 'nrt_observation' and xtype = '
IF NOT EXISTS(SELECT 1 FROM sys.columns WHERE name = N'assistant_interpreter_last_nm' AND object_id = Object_ID(N'nrt_observation'))
BEGIN
ALTER TABLE nrt_observation
ADD transcriptionist_last_nm varchar(50);
ADD assistant_interpreter_last_nm varchar(50);
END;

IF NOT EXISTS(SELECT 1 FROM sys.columns WHERE name = N'result_interpreter_id' AND object_id = Object_ID(N'nrt_observation'))
Expand Down

0 comments on commit 8ea27c5

Please sign in to comment.