Skip to content

Commit

Permalink
Revert "[AC-1682] Removed updating CollectionUser existing records wi…
Browse files Browse the repository at this point in the history
…th [ReadOnly] = 0 and [HidePasswords] = 0"

This reverts commit 086c88f.
  • Loading branch information
r-tome committed Jan 25, 2024
1 parent ebecc69 commit 737b81f
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,9 @@ BEGIN
-- Step 3
-- Update [dbo].[CollectionUser] with [Manage] = 1 using the temporary table
UPDATE CU
SET CU.[Manage] = 1
SET CU.[ReadOnly] = 0,
CU.[HidePasswords] = 0,
CU.[Manage] = 1
FROM [dbo].[CollectionUser] CU
INNER JOIN #TempUserManagers TUM ON CU.[OrganizationUserId] = TUM.[OrganizationUserId];

Expand Down

0 comments on commit 737b81f

Please sign in to comment.