@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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 -1
+1 -1
src/applications/people/storage/PhabricatorUserEmail.php
··· 17 17 public function getConfiguration() { 18 18 return array( 19 19 self::CONFIG_COLUMN_SCHEMA => array( 20 - 'address' => 'text128', 20 + 'address' => 'sort128', 21 21 'isVerified' => 'bool', 22 22 'isPrimary' => 'bool', 23 23 'verificationCode' => 'text64?',