Skip to content

Commit

Permalink
fix: Add @created Parameter in usp_Repository_Insert
Browse files Browse the repository at this point in the history
Signed-off-by: Jerrico Dela Cruz <[email protected]>
  • Loading branch information
jerricotandelacruz committed Nov 20, 2024
1 parent 44e1c0f commit 68bd57d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/sqldb/Stored Procedures/usp_Repository_Insert.sql
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ CREATE PROCEDURE [dbo].[usp_Repository_Insert]
@ConfirmAvaIP [BIT] = 0,
@ConfirmEnabledSecurity [BIT] = 0,
@ConfirmNotClientProject [BIT] = 0,
@Created [DATETIME] = GETDATE(),
@CreatedBy [VARCHAR](100) = NULL,
@Organization [VARCHAR](100),
@VisibilityId [INT] = 1,
Expand Down Expand Up @@ -49,7 +50,7 @@ BEGIN
@ConfirmAvaIP,
@ConfirmEnabledSecurity,
@ConfirmNotClientProject,
GETDATE(),
@Created,
@CreatedBy,
@Organization,
GETDATE(),
Expand Down

0 comments on commit 68bd57d

Please sign in to comment.