forked from ory/kratos
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(identity): migrate identity_addresses to lower case (ory#2517)
Closes ory#2426
- Loading branch information
Showing
9 changed files
with
9 additions
and
1 deletion.
There are no files selected for viewing
Empty file.
2 changes: 2 additions & 0 deletions
2
persistence/sql/migrations/sql/20220610155809000000_identity_address_casing.cockroach.up.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,2 @@ | ||
UPDATE identity_recovery_addresses SET value = LOWER(value) WHERE TRUE; | ||
UPDATE identity_verifiable_addresses SET value = LOWER(value) WHERE TRUE; |
Empty file.
2 changes: 2 additions & 0 deletions
2
persistence/sql/migrations/sql/20220610155809000000_identity_address_casing.mysql.up.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,2 @@ | ||
UPDATE identity_recovery_addresses SET value = LOWER(value) WHERE TRUE; | ||
UPDATE identity_verifiable_addresses SET value = LOWER(value) WHERE TRUE; |
Empty file.
2 changes: 2 additions & 0 deletions
2
persistence/sql/migrations/sql/20220610155809000000_identity_address_casing.postgres.up.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,2 @@ | ||
UPDATE identity_recovery_addresses SET value = LOWER(value) WHERE TRUE; | ||
UPDATE identity_verifiable_addresses SET value = LOWER(value) WHERE TRUE; |
Empty file.
2 changes: 2 additions & 0 deletions
2
persistence/sql/migrations/sql/20220610155809000000_identity_address_casing.sqlite3.up.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,2 @@ | ||
UPDATE identity_recovery_addresses SET value = LOWER(value) WHERE TRUE; | ||
UPDATE identity_verifiable_addresses SET value = LOWER(value) WHERE TRUE; |
2 changes: 1 addition & 1 deletion
2
persistence/sql/migrations/templates/20220301102702_identity_address_performance.up.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 |
---|---|---|
@@ -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; |