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

(Later...) Drop legacy Project transaction table

Summary: Ref T4010. I'll hold this for a bit, but we should eventually drop this table once the dust has settled.

Test Plan: Ran storage upgrade.

Reviewers: btrahan

Reviewed By: btrahan

CC: aran

Maniphest Tasks: T4010

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

+5
+1
resources/sql/patches/20131219.pxdrop.sql
··· 1 + DROP TABLE {$NAMESPACE}_project.project_legacytransaction;
+4
src/infrastructure/storage/patch/PhabricatorBuiltinPatchList.php
··· 1844 1844 'type' => 'sql', 1845 1845 'name' => $this->getPatchPath('20131217.pushlogphid.3.key.sql'), 1846 1846 ), 1847 + '20131219.pxdrop.sql' => array( 1848 + 'type' => 'sql', 1849 + 'name' => $this->getPatchPath('20131219.pxdrop.sql'), 1850 + ), 1847 1851 ); 1848 1852 } 1849 1853 }