Skip to content

Commit

Permalink
Resolve code conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
praju-aot committed Jan 28, 2025
1 parent e47983c commit 1d8d50c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ GO
DECLARE @VersionDescription VARCHAR(255)
SET @VersionDescription = 'Reverting updates to support new vehicle types for TROS and TROW'

INSERT [dbo].[ORBC_SYS_VERSION] ([VERSION_ID], [DESCRIPTION], [RELEASE_DATE]) VALUES (56, @VersionDescription, getutcdate())
INSERT [dbo].[ORBC_SYS_VERSION] ([VERSION_ID], [DESCRIPTION], [RELEASE_DATE]) VALUES (57, @VersionDescription, getutcdate())
GO

IF @@ERROR <> 0 SET NOEXEC ON
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ GO
DECLARE @VersionDescription VARCHAR(255)
SET @VersionDescription = 'Updates to support new vehicle types for TROS and TROW'

INSERT [dbo].[ORBC_SYS_VERSION] ([VERSION_ID], [DESCRIPTION], [UPDATE_SCRIPT], [REVERT_SCRIPT], [RELEASE_DATE]) VALUES (57, @VersionDescription, '$(UPDATE_SCRIPT)', '$(REVERT_SCRIPT)', getutcdate())
INSERT [dbo].[ORBC_SYS_VERSION] ([VERSION_ID], [DESCRIPTION], [UPDATE_SCRIPT], [REVERT_SCRIPT], [RELEASE_DATE]) VALUES (58, @VersionDescription, '$(UPDATE_SCRIPT)', '$(REVERT_SCRIPT)', getutcdate())
IF @@ERROR <> 0 SET NOEXEC ON
GO

Expand Down

0 comments on commit 1d8d50c

Please sign in to comment.