mirror of
https://github.com/bitwarden/server.git
synced 2024-12-01 13:43:23 +01:00
639ee5780b
Fix MariaDB compatibility with JSON_EXTRACT Co-authored-by: Matt Bishop <mbishop@bitwarden.com>
30 lines
875 B
SQL
30 lines
875 B
SQL
/* Update User Table */
|
|
UPDATE
|
|
`User` U
|
|
SET
|
|
U.TwoFactorProviders = JSON_SET(
|
|
JSON_SET(
|
|
U.TwoFactorProviders, '$."2".MetaData.ClientSecret',
|
|
JSON_UNQUOTE(JSON_EXTRACT(U.TwoFactorProviders,'$."2".MetaData.SKey'))),
|
|
'$."2".MetaData.ClientId',
|
|
JSON_UNQUOTE(JSON_EXTRACT(U.TwoFactorProviders,'$."2".MetaData.IKey')))
|
|
WHERE
|
|
JSON_CONTAINS(TwoFactorProviders,
|
|
'{"2":{}}')
|
|
AND JSON_VALID(TwoFactorProviders);
|
|
|
|
/* Update Organization Table */
|
|
UPDATE
|
|
Organization o
|
|
SET
|
|
o.TwoFactorProviders = JSON_SET(
|
|
JSON_SET(
|
|
o.TwoFactorProviders, '$."6".MetaData.ClientSecret',
|
|
JSON_UNQUOTE(JSON_EXTRACT(o.TwoFactorProviders,'$."6".MetaData.SKey'))),
|
|
'$."6".MetaData.ClientId',
|
|
JSON_UNQUOTE(JSON_EXTRACT(o.TwoFactorProviders,'$."6".MetaData.IKey')))
|
|
WHERE
|
|
JSON_CONTAINS(o.TwoFactorProviders,
|
|
'{"6":{}}')
|
|
AND JSON_VALID(o.TwoFactorProviders);
|