mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
Update 2024-09-05_00_SyncDuoVersionFourMetadataToVersionTwo.sql (#4982)
Fix MariaDB compatibility with JSON_EXTRACT Co-authored-by: Matt Bishop <mbishop@bitwarden.com>
This commit is contained in:
parent
355ebfa889
commit
639ee5780b
@ -5,9 +5,9 @@ SET
|
|||||||
U.TwoFactorProviders = JSON_SET(
|
U.TwoFactorProviders = JSON_SET(
|
||||||
JSON_SET(
|
JSON_SET(
|
||||||
U.TwoFactorProviders, '$."2".MetaData.ClientSecret',
|
U.TwoFactorProviders, '$."2".MetaData.ClientSecret',
|
||||||
JSON_UNQUOTE(U.TwoFactorProviders ->'$."2".MetaData.SKey')),
|
JSON_UNQUOTE(JSON_EXTRACT(U.TwoFactorProviders,'$."2".MetaData.SKey'))),
|
||||||
'$."2".MetaData.ClientId',
|
'$."2".MetaData.ClientId',
|
||||||
JSON_UNQUOTE(U.TwoFactorProviders -> '$."2".MetaData.IKey'))
|
JSON_UNQUOTE(JSON_EXTRACT(U.TwoFactorProviders,'$."2".MetaData.IKey')))
|
||||||
WHERE
|
WHERE
|
||||||
JSON_CONTAINS(TwoFactorProviders,
|
JSON_CONTAINS(TwoFactorProviders,
|
||||||
'{"2":{}}')
|
'{"2":{}}')
|
||||||
@ -20,9 +20,9 @@ SET
|
|||||||
o.TwoFactorProviders = JSON_SET(
|
o.TwoFactorProviders = JSON_SET(
|
||||||
JSON_SET(
|
JSON_SET(
|
||||||
o.TwoFactorProviders, '$."6".MetaData.ClientSecret',
|
o.TwoFactorProviders, '$."6".MetaData.ClientSecret',
|
||||||
JSON_UNQUOTE(o.TwoFactorProviders ->'$."6".MetaData.SKey')),
|
JSON_UNQUOTE(JSON_EXTRACT(o.TwoFactorProviders,'$."6".MetaData.SKey'))),
|
||||||
'$."6".MetaData.ClientId',
|
'$."6".MetaData.ClientId',
|
||||||
JSON_UNQUOTE(o.TwoFactorProviders -> '$."6".MetaData.IKey'))
|
JSON_UNQUOTE(JSON_EXTRACT(o.TwoFactorProviders,'$."6".MetaData.IKey')))
|
||||||
WHERE
|
WHERE
|
||||||
JSON_CONTAINS(o.TwoFactorProviders,
|
JSON_CONTAINS(o.TwoFactorProviders,
|
||||||
'{"6":{}}')
|
'{"6":{}}')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user