Skip to content

Commit 01a538f

Browse files
CNDE-2334 Fix alter page case answer (#236)
Co-authored-by: Varshinee Venkatesan
1 parent 4b56a76 commit 01a538f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

liquibase-service/src/main/resources/db/rdb_modern/tables/014-create_nrt_page_case_answer-001.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ IF EXISTS (SELECT 1 FROM sysobjects WHERE name = 'nrt_page_case_answer' and xtyp
6565
END;
6666

6767

68-
IF NOT EXISTS(SELECT 1 FROM sys.columns WHERE Name = N'nbs_rdb_metadata_uid' AND Object_ID = Object_ID(N'nrt_page_case_answer'))
68+
IF EXISTS(SELECT 1 FROM sys.columns WHERE Name = N'nbs_rdb_metadata_uid' AND Object_ID = Object_ID(N'nrt_page_case_answer'))
6969
BEGIN
7070
ALTER TABLE dbo.nrt_page_case_answer ALTER COLUMN nbs_rdb_metadata_uid bigint NULL;
7171
END;

0 commit comments

Comments
 (0)