Skip to content

Commit cd941b5

Browse files
committed
adding xClaimRejReasons and fix missing column (removed in last commit)
1 parent 98064c1 commit cd941b5

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

320 Bytes
Binary file not shown.

Migration script/openIMIS migration v1.4.2 - 1.5.0.sql

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,14 @@ BEGIN
1010
WITH VALUES
1111
END
1212
GO
13+
IF TYPE_ID(N'xClaimRejReasons') IS NULL
14+
BEGIN
15+
CREATE TYPE [dbo].[xClaimRejReasons] AS TABLE(
16+
[ID] [int] NOT NULL,
17+
[Name] [nvarchar](100) NULL
18+
)
19+
END
20+
GO
1321

1422
IF COL_LENGTH('tblPremium', 'OverviewCommissionReport') IS NULL
1523
BEGIN

0 commit comments

Comments
 (0)