-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
comment updates for SQLite; Query changes for consistency;
- Loading branch information
1 parent
445ae9b
commit ecaf974
Showing
6 changed files
with
2,774 additions
and
116 deletions.
There are no files selected for viewing
29 changes: 29 additions & 0 deletions
29
util/MySqlMigrations/HelperScripts/2024-09-05_00_SyncDuoVersionFourMetadataToVersionTwo.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/* Update User Table */ | ||
UPDATE | ||
`User` U | ||
SET | ||
U.TwoFactorProviders = JSON_SET( | ||
JSON_SET( | ||
U.TwoFactorProviders, '$."2".MetaData.ClientSecret', | ||
JSON_UNQUOTE(U.TwoFactorProviders ->'$."2".MetaData.SKey')), | ||
'$."2".MetaData.ClientId', | ||
JSON_UNQUOTE(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(o.TwoFactorProviders ->'$."6".MetaData.SKey')), | ||
'$."6".MetaData.ClientId', | ||
JSON_UNQUOTE(o.TwoFactorProviders -> '$."6".MetaData.IKey')) | ||
WHERE | ||
JSON_CONTAINS(o.TwoFactorProviders, | ||
'{"6":{}}') | ||
AND JSON_VALID(o.TwoFactorProviders); |
Oops, something went wrong.