Skip to content
This repository has been archived by the owner on Oct 20, 2022. It is now read-only.

Commit

Permalink
Use int instead of smallint
Browse files Browse the repository at this point in the history
Fixes #3
  • Loading branch information
mattjohnsonpint committed Sep 10, 2015
1 parent 0628037 commit 75b3627
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Database/Functions/LocalToUtc.sql
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
RETURNS datetimeoffset
AS
BEGIN
DECLARE @OffsetMinutes smallint
DECLARE @OffsetMinutes int

DECLARE @ZoneId int
SET @ZoneId = [Tzdb].GetZoneId(@tz)
Expand Down
2 changes: 1 addition & 1 deletion Database/Functions/UtcToLocal.sql
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
RETURNS datetimeoffset
AS
BEGIN
DECLARE @OffsetMinutes smallint
DECLARE @OffsetMinutes int

DECLARE @ZoneId int
SET @ZoneId = [Tzdb].GetZoneId(@tz)
Expand Down

0 comments on commit 75b3627

Please sign in to comment.