diff --git a/src/applications/project/storage/PhabricatorProjectColumn.php b/src/applications/project/storage/PhabricatorProjectColumn.php --- a/src/applications/project/storage/PhabricatorProjectColumn.php +++ b/src/applications/project/storage/PhabricatorProjectColumn.php @@ -170,16 +170,14 @@ // Normal columns and subproject columns go first, in a user-controlled // order. - // All the milestone columns go last, in reverse order (newest on the - // left) so that you don't have to scroll across older milestones to get - // to the newest ones. + // All the milestone columns go last, in their sequential order. if (!$proxy || !$proxy->isMilestone()) { $group = 'A'; $sequence = $this->getSequence(); } else { $group = 'B'; - $sequence = (10000000 - $proxy->getMilestoneNumber()); + $sequence = $proxy->getMilestoneNumber(); } return sprintf('%s%012d', $group, $sequence);