Skip to content

Commit

Permalink
fix: ORV2-2841 Correct the DB version for 44 (#1620)
Browse files Browse the repository at this point in the history
  • Loading branch information
praju-aot authored Sep 25, 2024
1 parent 945a352 commit b453ac4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion database/mssql/scripts/versions/revert/v_44_ddl_revert.sql
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ END CATCH
DECLARE @VersionDescription VARCHAR(255)
SET @VersionDescription = 'Revert MFP templates'

INSERT [dbo].[ORBC_SYS_VERSION] ([VERSION_ID], [DESCRIPTION], [RELEASE_DATE]) VALUES (42, @VersionDescription, getutcdate())
INSERT [dbo].[ORBC_SYS_VERSION] ([VERSION_ID], [DESCRIPTION], [RELEASE_DATE]) VALUES (43, @VersionDescription, getutcdate())
2 changes: 1 addition & 1 deletion database/mssql/scripts/versions/v_44_ddl.sql
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ GO
DECLARE @VersionDescription VARCHAR(255)
SET @VersionDescription = 'MFP permit templates.'

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

Expand Down

0 comments on commit b453ac4

Please sign in to comment.