Skip to content

Commit

Permalink
fix(identity): migrate identity_addresses to lower case (#2517)
Browse files Browse the repository at this point in the history
Closes #2426
  • Loading branch information
flxbk committed Jul 5, 2022
1 parent 2b8a4f5 commit c058e23
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
UPDATE identity_recovery_addresses SET value = LOWER(value) WHERE TRUE;
UPDATE identity_verifiable_addresses SET value = LOWER(value) WHERE TRUE;
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
UPDATE identity_recovery_addresses SET value = LOWER(value) WHERE TRUE;
UPDATE identity_verifiable_addresses SET value = LOWER(value) WHERE TRUE;
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
UPDATE identity_recovery_addresses SET value = LOWER(value) WHERE TRUE;
UPDATE identity_verifiable_addresses SET value = LOWER(value) WHERE TRUE;
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
UPDATE identity_recovery_addresses SET value = LOWER(value) WHERE TRUE;
UPDATE identity_verifiable_addresses SET value = LOWER(value) WHERE TRUE;
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
UPDATE identity_recovery_addresses SET value = LOWER(value) WHERE TRUE;
UPDATE identity_verification_addresses SET value = LOWER(value) WHERE TRUE;
UPDATE identity_verifiable_addresses SET value = LOWER(value) WHERE TRUE;

0 comments on commit c058e23

Please sign in to comment.