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

chore: drop CipherRepository v2 sprocs (#4464)

These updated sprocs removed AccessAll from cipher access logic.
The non-versioned sprocs have been updated with the new logic and
these v2 copies are now unused. They are being dropped to complete
the EDD cycle.
This commit is contained in:
Thomas Rittson
2024-07-18 08:22:45 +10:00
committed by GitHub
parent b0ea2a25f0
commit b4e58ad942
6 changed files with 29 additions and 247 deletions

View File

@ -0,0 +1,29 @@
IF OBJECT_ID('[dbo].[Cipher_Delete_V2]') IS NOT NULL
BEGIN
DROP PROCEDURE [dbo].[Cipher_Delete_V2]
END
GO
IF OBJECT_ID('[dbo].[Cipher_Move_V2]') IS NOT NULL
BEGIN
DROP PROCEDURE [dbo].[Cipher_Move_V2]
END
GO
IF OBJECT_ID('[dbo].[Cipher_Restore_V2]') IS NOT NULL
BEGIN
DROP PROCEDURE [dbo].[Cipher_Restore_V2]
END
GO
IF OBJECT_ID('[dbo].[Cipher_SoftDelete_V2]') IS NOT NULL
BEGIN
DROP PROCEDURE [dbo].[Cipher_SoftDelete_V2]
END
GO
IF OBJECT_ID('[dbo].[CipherDetails_ReadByIdUserId_V2]') IS NOT NULL
BEGIN
DROP PROCEDURE [dbo].[CipherDetails_ReadByIdUserId_V2]
END
GO