@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.

Add a "points" field to tasks

Summary:
Currently never read or written.

Supports fractions.

There's no such thing as an unsigned double so this also supports negative values, technically, although I'll eventually prevent this in the UI.

Test Plan: `bin/storage upgrade`, then created and edited a task. Nothing was different.

Reviewers: chad

Reviewed By: chad

Differential Revision: https://secure.phabricator.com/D15218

+4
+2
resources/sql/autopatches/20160208.task.3.sql
··· 1 + ALTER TABLE {$NAMESPACE}_maniphest.maniphest_task 2 + ADD points DOUBLE;
+2
src/applications/maniphest/storage/ManiphestTask.php
··· 37 37 protected $ownerOrdering; 38 38 protected $spacePHID; 39 39 protected $properties = array(); 40 + protected $points; 40 41 41 42 private $subscriberPHIDs = self::ATTACHABLE; 42 43 private $groupByProjectPHID = self::ATTACHABLE; ··· 80 81 'ownerOrdering' => 'text64?', 81 82 'originalEmailSource' => 'text255?', 82 83 'subpriority' => 'double', 84 + 'points' => 'double?', 83 85 ), 84 86 self::CONFIG_KEY_SCHEMA => array( 85 87 'key_phid' => null,