Skip to content

Commit

Permalink
remove default value for GridAreas
Browse files Browse the repository at this point in the history
  • Loading branch information
vbelinschi committed Sep 12, 2024
1 parent 7743fdc commit 356996d
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,9 @@ ADD [IncludeMonthlyAmount] [bit] NOT NULL DEFAULT(0);
GO

ALTER TABLE [settlementreports].[SettlementReport]
ADD [GridAreas] [nvarchar](2048) NOT NULL DEFAULT('');
ADD [GridAreas] [nvarchar](2048) NOT NULL CONSTRAINT SettlementReport_GridAreas_Default_Constraint DEFAULT('');
GO

ALTER TABLE [settlementreports].[SettlementReport]
DROP CONSTRAINT SettlementReport_GridAreas_Default_Constraint
GO

0 comments on commit 356996d

Please sign in to comment.