mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
9a52492f1b
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
7 lines
174 B
SQL
7 lines
174 B
SQL
/* Removes Ponder vote data. */
|
|
|
|
DELETE FROM {$NAMESPACE}_ponder.edge
|
|
WHERE type IN (17, 18, 19, 20);
|
|
|
|
DELETE FROM {$NAMESPACE}_user.edge
|
|
WHERE type IN (17, 18, 19, 20);
|