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

Added autopatch to remove ponder vote data

Summary: Fixes T9117. Adds a migration to remove ponder vote data.

Test Plan: I added a bunch of lines to phabricator_user.edge with type 18 and they were successfully removed by this patch

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: epriestley, yelirekim

Maniphest Tasks: T9117

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

Josh Cox 9a52492f 9d9a47e9

+7
+7
resources/sql/autopatches/20160825.ponder.sql
··· 1 + /* Removes Ponder vote data. */ 2 + 3 + DELETE FROM {$NAMESPACE}_ponder.edge 4 + WHERE type IN (17, 18, 19, 20); 5 + 6 + DELETE FROM {$NAMESPACE}_user.edge 7 + WHERE type IN (17, 18, 19, 20);