mirror of
https://github.com/bitwarden/server.git
synced 2026-01-31 14:13:18 +08: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
|
||
|
|
)
|