1
0
mirror of https://github.com/bitwarden/server synced 2025-12-20 10:13:39 +00:00

[PM-19195] Remove deprecated stored procedures (#6128)

This commit is contained in:
Rui Tomé
2025-07-29 14:22:09 +01:00
committed by GitHub
parent 3f508cd43b
commit 52ef3ef7a5
3 changed files with 11 additions and 62 deletions

View File

@@ -0,0 +1,11 @@
IF OBJECT_ID('[dbo].[OrganizationUser_SetStatusForUsersById]') IS NOT NULL
BEGIN
DROP PROCEDURE [dbo].[OrganizationUser_SetStatusForUsersById]
END
GO
IF OBJECT_ID('[dbo].[User_BumpAccountRevisionDateByOrganizationUserIdsJson]') IS NOT NULL
BEGIN
DROP PROCEDURE [dbo].[User_BumpAccountRevisionDateByOrganizationUserIdsJson]
END
GO