1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-22 12:15:36 +01:00
bitwarden-server/util/PostgresMigrations/HelperScripts/2024-09-05_00_SyncDuoVersionFourMetadataToVersionTwo.psql
Ike 02fee8c1e9
[PM-8108] Add Duo SDK v4 metadata to Duo Two Factor Provider (#4774)
* Migrate Duo Two Factor Configuration to support both v2 and v4

* Postgres Migrations

* SQLite migrations

* comment updates for SQLite; Query changes for consistency;

* comment clean up; formatting
2024-09-23 15:51:04 -07:00

28 lines
846 B
Plaintext

-- Update User table
update
"User"
set
"TwoFactorProviders" = jsonb_set(
jsonb_set("TwoFactorProviders"::jsonb,
'{2,MetaData,ClientSecret}',
("TwoFactorProviders"::jsonb -> '2' -> 'MetaData' -> 'SKey')),
'{2,MetaData,ClientId}',
("TwoFactorProviders"::jsonb -> '2' -> 'MetaData' -> 'IKey'))
where
"TwoFactorProviders" like '%"2":%'
and jsonb_typeof("TwoFactorProviders"::jsonb) = 'object';
-- Update Organization table
update
"Organization"
set
"TwoFactorProviders" = jsonb_set(
jsonb_set("TwoFactorProviders"::jsonb,
'{6,MetaData,ClientSecret}',
("TwoFactorProviders"::jsonb -> '6' -> 'MetaData' -> 'SKey')),
'{6,MetaData,ClientId}',
("TwoFactorProviders"::jsonb -> '6' -> 'MetaData' -> 'IKey'))
where
"TwoFactorProviders" like '%"6":%'
and jsonb_typeof("TwoFactorProviders"::jsonb) = 'object';