1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 15:42:48 -05:00

get rid of premium renewal jobs for braintree

This commit is contained in:
Kyle Spearrin
2019-02-14 10:18:27 -05:00
parent f2aac6b8a0
commit f70ececa9d
8 changed files with 13 additions and 99 deletions

View File

@ -245,3 +245,9 @@ BEGIN
AND [GatewayId] = @GatewayId
END
GO
IF OBJECT_ID('[dbo].[User_ReadByPremiumRenewal]') IS NOT NULL
BEGIN
DROP PROCEDURE [dbo].[User_ReadByPremiumRenewal]
END
GO