Skip to content

Commit

Permalink
CNDE-1805 Another for the cd_desc_txt consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
sveselev committed Oct 10, 2024
1 parent 3d64deb commit ab7f700
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ databaseChangeLog:
author: liquibase
changes:
- sqlFile:
path: 012-create-nrt-investigation-notification-002.sql
path: 012-create_nrt_investigation_notification-002.sql
splitStatements: false
- changeSet:
id: 14
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ IF EXISTS (SELECT 1 FROM sysobjects WHERE name = 'nrt_observation' and xtype = '

IF NOT EXISTS(SELECT 1 FROM sys.columns WHERE Name = N'cd_desc_txt' AND Object_ID = Object_ID(N'nrt_observation'))
BEGIN
ALTER TABLE nrt_observation
ADD cd_desc_txt varchar(1000);
EXEC sys.sp_rename N'nrt_observation.cd_desc_text', N'cd_desc_txt', 'COLUMN';
END;

END;
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ public class ObservationReporting {
private String classCd;
private String moodCd;
private Long actUid;
private String cdDescText;
private String recordStatusCd;
private String jurisdictionCd;
private Long programJurisdictionOid;
Expand Down

0 comments on commit ab7f700

Please sign in to comment.