Skip to content

Commit 8317c9c

Browse files
committed
Added a missing user data type xBulkControlNumbers
1 parent a93871c commit 8317c9c

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

sql/migrations/1_migration_latest.sql

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9537,3 +9537,14 @@ IF COL_LENGTH(N'tblPremium', N'SourceVersion') IS NULL
95379537
ALTER TABLE tblPremium ADD SourceVersion NVARCHAR(15) NULL
95389538
GO
95399539

9540+
--OTC-406
9541+
IF TYPE_ID('xBulkControlNumbers') IS NULL
9542+
BEGIN
9543+
CREATE TYPE xBulkControlNumbers AS TABLE(
9544+
BillId INT,
9545+
ProdId INT,
9546+
OfficerId INT,
9547+
Amount DECIMAL(18,2)
9548+
)
9549+
END
9550+
GO

0 commit comments

Comments
 (0)