From aa0ca6fe4c22683ffdef898c85bded026d921cb1 Mon Sep 17 00:00:00 2001 From: epriestley Date: Fri, 7 Nov 2014 09:48:31 -0800 Subject: [PATCH] Make user emails case-insensitive Summary: Ref T1191. Same deal as D10786. These were previously case-insensitive, but changed to a case-sensitive column type. Test Plan: Ran `bin/storage adjust` and got and adjustment. Reviewers: btrahan Reviewed By: btrahan Subscribers: webframp, epriestley Maniphest Tasks: T1191 Differential Revision: https://secure.phabricator.com/D10806 --- src/applications/people/storage/PhabricatorUserEmail.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/people/storage/PhabricatorUserEmail.php b/src/applications/people/storage/PhabricatorUserEmail.php index e7c2743373..e4b63b6735 100644 --- a/src/applications/people/storage/PhabricatorUserEmail.php +++ b/src/applications/people/storage/PhabricatorUserEmail.php @@ -17,7 +17,7 @@ final class PhabricatorUserEmail extends PhabricatorUserDAO { public function getConfiguration() { return array( self::CONFIG_COLUMN_SCHEMA => array( - 'address' => 'text128', + 'address' => 'sort128', 'isVerified' => 'bool', 'isPrimary' => 'bool', 'verificationCode' => 'text64?',