1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-23 05:50:55 +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:
epriestley 2014-11-07 09:48:31 -08:00
parent e58259b4f5
commit aa0ca6fe4c

View file

@ -17,7 +17,7 @@ final class PhabricatorUserEmail extends PhabricatorUserDAO {
public function getConfiguration() { public function getConfiguration() {
return array( return array(
self::CONFIG_COLUMN_SCHEMA => array( self::CONFIG_COLUMN_SCHEMA => array(
'address' => 'text128', 'address' => 'sort128',
'isVerified' => 'bool', 'isVerified' => 'bool',
'isPrimary' => 'bool', 'isPrimary' => 'bool',
'verificationCode' => 'text64?', 'verificationCode' => 'text64?',