1
0
mirror of https://github.com/bitwarden/server synced 2025-12-15 07:43:54 +00:00
Files
server/util/PostgresMigrations/HelperScripts/2024-01-12_03_EnableOrgsFlexibleCollections.psql
2024-01-12 15:33:35 +00:00

5 lines
183 B
Plaintext

-- Set "FlexibleCollections" = true for all organizations that have not yet been migrated.
UPDATE "Organization"
SET "FlexibleCollections" = true
WHERE "FlexibleCollections" = false;