Skip to content

Commit fd1544b

Browse files
committed
Change Create or Alter to Drop and Create stored procedure
1 parent 55df671 commit fd1544b

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

Migration script/openIMIS migration latest.sql

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8636,7 +8636,11 @@ BEGIN
86368636
END
86378637
GO
86388638

8639-
CREATE OR ALTER PROCEDURE [dbo].[uspPolicyRenewalInserts](
8639+
IF NOT OBJECT_ID('uspPolicyRenewalInserts') IS NULL
8640+
DROP PROCEDURE uspPolicyRenewalInserts
8641+
GO
8642+
8643+
CREATE PROCEDURE [dbo].[uspPolicyRenewalInserts](
86408644
--@RenewalWarning --> 1 = no valid product for renewal 2= No enrollment officer found (no photo) 4= INVALID Enrollment officer
86418645
@RemindingInterval INT = NULL,
86428646
@RegionId INT = NULL,

0 commit comments

Comments
 (0)