1
0
mirror of https://github.com/bitwarden/server synced 2026-01-03 17:14:00 +00:00

sproc updates for user account revision bumps

This commit is contained in:
Kyle Spearrin
2017-11-24 11:53:55 -05:00
parent 49372bed38
commit 2f3c6b3b01
26 changed files with 1338 additions and 14 deletions

View File

@@ -19,6 +19,6 @@ BEGIN
DECLARE @OrganizationId UNIQUEIDENTIFIER = (SELECT TOP 1 [OrganizationId] FROM [dbo].[Cipher] WHERE [Id] = @CipherId)
IF @OrganizationId IS NOT NULL
BEGIN
EXEC [dbo].[User_BumpAccountRevisionDateByOrganizationId] @OrganizationId
EXEC [dbo].[User_BumpAccountRevisionDateByCollectionId] @CollectionId, @OrganizationId
END
END