1
0
mirror of https://github.com/bitwarden/server synced 2026-01-08 03:23:20 +00:00

AccountRevDate bump via sprocs, no more triggers

This commit is contained in:
Kyle Spearrin
2017-04-24 23:28:31 -04:00
parent f2aa568e86
commit 6e87d9c21f
22 changed files with 170 additions and 60 deletions

View File

@@ -51,4 +51,9 @@ BEGIN
AND [Target].[SubvaultId] IN (SELECT [Id] FROM [AvailableSubvaultsCTE]) THEN
DELETE
;
IF @OrgId IS NOT NULL
BEGIN
EXEC [dbo].[User_BumpAccountRevisionDateByOrganizationId] @OrgId
END
END