1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-03 00:52:49 -05:00

PM-20574 updating sql migration to fix database test

This commit is contained in:
Graham Walker
2025-06-10 13:00:08 -05:00
parent 4b952b1109
commit 5c37f56118
21 changed files with 44 additions and 8 deletions

View File

@ -9,6 +9,8 @@ BEGIN
DECLARE @BatchSize INT = 100
WHILE @BatchSize > 0
GO
BEGIN
BEGIN TRANSACTION Organization_DeleteById_Ciphers
@ -24,6 +26,8 @@ BEGIN TRANSACTION Organization_DeleteById_Ciphers
COMMIT TRANSACTION Organization_DeleteById_Ciphers
END
GO
BEGIN TRANSACTION Organization_DeleteById
DELETE
@ -159,3 +163,5 @@ WHERE
COMMIT TRANSACTION Organization_DeleteById
END
GO