Skip to content

Commit

Permalink
fix(identity): migrate identity_addresses to lower case (ory#2517)
Browse files Browse the repository at this point in the history
Closes ory#2426
  • Loading branch information
flxbk authored Jul 5, 2022
1 parent 66f08e7 commit c9473c3
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 c9473c3

Please sign in to comment.