From 278783223b69caf7ea2c4ec6561cff37a190c080 Mon Sep 17 00:00:00 2001 From: Rui Tome Date: Tue, 27 Dec 2022 11:40:08 +0000 Subject: [PATCH] [EC-427] Updated Provider sql script to include default column value --- src/Sql/dbo/Tables/Provider.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Sql/dbo/Tables/Provider.sql b/src/Sql/dbo/Tables/Provider.sql index 53269cdfa6..88900acbad 100644 --- a/src/Sql/dbo/Tables/Provider.sql +++ b/src/Sql/dbo/Tables/Provider.sql @@ -11,7 +11,7 @@ [BillingPhone] NVARCHAR (50) NULL, [Status] TINYINT NOT NULL, [UseEvents] BIT NOT NULL, - [Type] TINYINT NOT NULL, + [Type] TINYINT NOT NULL CONSTRAINT [DF_Provider_Type] DEFAULT (0), [Enabled] BIT NOT NULL, [CreationDate] DATETIME2 (7) NOT NULL, [RevisionDate] DATETIME2 (7) NOT NULL,