mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +01:00
b0ea2a25f0
These sprocs have been copied back to non-versioned names and are no longer in use. Now we are dropping the v2 sprocs to complete the EDD cycle.
46 lines
1.2 KiB
Transact-SQL
46 lines
1.2 KiB
Transact-SQL
-- Drop the v2 naming for sprocs that added the CollectionUser.Manage and CollectionGroup.Manage columns.
|
|
-- 2024-06-25_00_FinalizeCollectionManagePermission duplicated the v2 sprocs back to v0
|
|
-- Step 2: delete v2 sprocs
|
|
|
|
IF OBJECT_ID('[dbo].[Group_CreateWithCollections_V2]') IS NOT NULL
|
|
BEGIN
|
|
DROP PROCEDURE [dbo].[Group_CreateWithCollections_V2]
|
|
END
|
|
GO
|
|
|
|
IF OBJECT_ID('[dbo].[Group_UpdateWithCollections_V2]') IS NOT NULL
|
|
BEGIN
|
|
DROP PROCEDURE [dbo].[Group_UpdateWithCollections_V2]
|
|
END
|
|
GO
|
|
|
|
IF OBJECT_ID('[dbo].[OrganizationUser_CreateWithCollections_V2]') IS NOT NULL
|
|
BEGIN
|
|
DROP PROCEDURE [dbo].[OrganizationUser_CreateWithCollections_V2]
|
|
END
|
|
GO
|
|
|
|
IF OBJECT_ID('[dbo].[OrganizationUser_UpdateWithCollections_V2]') IS NOT NULL
|
|
BEGIN
|
|
DROP PROCEDURE [dbo].[OrganizationUser_UpdateWithCollections_V2]
|
|
END
|
|
GO
|
|
|
|
IF OBJECT_ID('[dbo].[Collection_CreateWithGroupsAndUsers_V2]') IS NOT NULL
|
|
BEGIN
|
|
DROP PROCEDURE [dbo].[Collection_CreateWithGroupsAndUsers_V2]
|
|
END
|
|
GO
|
|
|
|
IF OBJECT_ID('[dbo].[Collection_UpdateWithGroupsAndUsers_V2]') IS NOT NULL
|
|
BEGIN
|
|
DROP PROCEDURE [dbo].[Collection_UpdateWithGroupsAndUsers_V2]
|
|
END
|
|
GO
|
|
|
|
IF OBJECT_ID('[dbo].[CollectionUser_UpdateUsers_V2]') IS NOT NULL
|
|
BEGIN
|
|
DROP PROCEDURE [dbo].[CollectionUser_UpdateUsers_V2]
|
|
END
|
|
GO
|