Skip to content

Commit aa0ca6f

Browse files
author
epriestley
committed
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
1 parent e58259b commit aa0ca6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/applications/people/storage/PhabricatorUserEmail.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ final class PhabricatorUserEmail extends PhabricatorUserDAO {
1717
public function getConfiguration() {
1818
return array(
1919
self::CONFIG_COLUMN_SCHEMA => array(
20-
'address' => 'text128',
20+
'address' => 'sort128',
2121
'isVerified' => 'bool',
2222
'isPrimary' => 'bool',
2323
'verificationCode' => 'text64?',

0 commit comments

Comments
 (0)