Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
352 views
in Q2A Core by
All downvotes that have been posted on the site.

1 Answer

+4 votes
by

The quickest way would be to delete all rows in the qa_uservotes table where the 'vote' field is -1. Then in the admin > stats page, click the button to recount all posts/votes.

A SQL query that would delete those rows is

DELETE FROM qa_uservotes WHERE vote=-1
...