Skip to content

Commit d996959

Browse files
committed
Added xBulkControlNumbers type in Base file
1 parent 8317c9c commit d996959

2 files changed

Lines changed: 10 additions & 2 deletions

File tree

sql/base/1_schema_tables.sql

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -690,6 +690,14 @@ CREATE TYPE [dbo].[xWards] AS TABLE(
690690
)
691691
GO
692692

693+
CREATE TYPE [dbo].[xBulkControlNumbers] AS TABLE(
694+
BillId INT,
695+
ProdId INT,
696+
OfficerId INT,
697+
Amount DECIMAL(18,2)
698+
)
699+
GO
700+
693701

694702
SET ANSI_NULLS ON
695703
GO

sql/migrations/1_migration_latest.sql

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

9540-
--OTC-406
9540+
--OTC-619
95419541
IF TYPE_ID('xBulkControlNumbers') IS NULL
95429542
BEGIN
9543-
CREATE TYPE xBulkControlNumbers AS TABLE(
9543+
CREATE TYPE [dbo].[xBulkControlNumbers] AS TABLE(
95449544
BillId INT,
95459545
ProdId INT,
95469546
OfficerId INT,

0 commit comments

Comments
 (0)