Skip to content

Commit 0636025

Browse files
committed
Converted string date default to int default
This fixes a warning about potential data loss. That wouldn't have occurred here. But it's a legitimate warning in other cases, so we don't want to suppress the error. Easy work around.
1 parent b0e1452 commit 0636025

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

OnTopic.Data.Sql.Database/Utilities/Stored Procedures/ConsolidateVersions.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
--------------------------------------------------------------------------------------------------------------------------------
99

1010
CREATE PROCEDURE [Utilities].[ConsolidateVersions]
11-
@StartDate datetime = 20000101,
11+
@StartDate datetime = '2000-01-01',
1212
@EndDate datetime = null
1313
AS
1414

0 commit comments

Comments
 (0)