1
0
mirror of https://github.com/bitwarden/server synced 2025-12-06 00:03:34 +00:00
Files
server/util/Migrator/DbScripts/2025-07-28_00_DropJsonOrgUserSetStatusAndUserBumpSprocs.sql

12 lines
339 B
Transact-SQL

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