mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05:00
[PM-1974] Update the status of organizations from Pending to Created (#2886)
--------- Co-authored-by: Thomas Rittson <trittson@bitwarden.com>
This commit is contained in:
parent
20d3b4b4e8
commit
b02d86fad7
@ -0,0 +1,18 @@
|
|||||||
|
-- Update the [Status] of organizations from Pending (0) to Created (1) if they have at least 1 confirmed user
|
||||||
|
-- This is to fix an issue where the default value of 0 (Pending) was accidentally written back to the database
|
||||||
|
-- for existing organizations
|
||||||
|
UPDATE
|
||||||
|
[dbo].[Organization]
|
||||||
|
SET
|
||||||
|
[Status] = 1 -- Created
|
||||||
|
WHERE
|
||||||
|
[Status] = 0 -- Pending
|
||||||
|
AND [Id] IN (
|
||||||
|
SELECT DISTINCT
|
||||||
|
ou.[OrganizationId]
|
||||||
|
FROM
|
||||||
|
[dbo].OrganizationUser ou
|
||||||
|
WHERE
|
||||||
|
ou.[Status] = 2 -- confirmed
|
||||||
|
)
|
||||||
|
GO
|
Loading…
x
Reference in New Issue
Block a user