Files
server/util/Migrator/DbScripts/2025-07-28_00_DropJsonOrgUserSetStatusAndUserBumpSprocs.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
339 B
MySQL
Raw Normal View History

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