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

at recaptime-dev/main 13 lines 369 B view raw
1ALTER TABLE {$NAMESPACE}_timeline.timeline_event 2 ADD dataID int unsigned; 3 4ALTER TABLE {$NAMESPACE}_timeline.timeline_event 5 ADD UNIQUE KEY (dataID); 6 7UPDATE {$NAMESPACE}_timeline.timeline_event e, 8 {$NAMESPACE}_timeline.timeline_eventdata d 9 SET e.dataID = d.id 10 WHERE d.eventID = e.id; 11 12ALTER TABLE {$NAMESPACE}_timeline.timeline_eventdata 13 DROP eventID;