mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
8 lines
174 B
MySQL
8 lines
174 B
MySQL
|
/* 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);
|