mirror of
https://github.com/bitwarden/server.git
synced 2024-11-29 13:25:17 +01:00
11 lines
187 B
MySQL
11 lines
187 B
MySQL
|
UPDATE
|
||
|
[dbo].[Organization]
|
||
|
SET
|
||
|
[MaxStorageGb] = ISNULL([MaxStorageGb], 1)
|
||
|
WHERE
|
||
|
[MaxStorageGb] IS NULL
|
||
|
AND [PlanType] NOT IN (
|
||
|
0, --Free
|
||
|
6 --Custom
|
||
|
)
|