mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
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
This commit is contained in:
parent
e58259b4f5
commit
aa0ca6fe4c
1 changed files with 1 additions and 1 deletions
|
@ -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?',
|
||||
|
|
Loading…
Reference in a new issue