1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-02 00:22:50 -05:00

[AC-1682] Update RevisionDate in Group table

This commit is contained in:
Rui Tome
2024-02-16 12:51:13 +00:00
parent 39e336eddd
commit f7f692cf08
3 changed files with 3 additions and 3 deletions

View File

@ -31,7 +31,7 @@ WHERE CG."CollectionId" IS NULL;
-- Step 5: Update Group to clear AccessAll flag
UPDATE "Group" G
SET "AccessAll" = false
SET "AccessAll" = false, "RevisionDate" = current_timestamp
FROM TempGroup TG
WHERE G."Id" = TG."GroupId";