mirror of
https://github.com/bitwarden/server.git
synced 2024-11-25 12:45:18 +01:00
e6c24c3f3b
* Add SCIM to Teams * Robert's feedback * Feedback
14 lines
210 B
Transact-SQL
14 lines
210 B
Transact-SQL
SET DEADLOCK_PRIORITY HIGH
|
|
GO
|
|
UPDATE
|
|
[dbo].[Organization]
|
|
SET
|
|
[UseScim] = 1
|
|
WHERE
|
|
[PlanType] IN (
|
|
17, -- Teams (Monthly)
|
|
18 -- Teams (Annually)
|
|
)
|
|
SET DEADLOCK_PRIORITY NORMAL
|
|
GO
|