mirror of
https://github.com/bitwarden/server.git
synced 2024-11-29 13:25:17 +01:00
14 lines
210 B
MySQL
14 lines
210 B
MySQL
|
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
|