Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
385 views
in Q2A Core by
I wanna change all points as 0. How can I reset all of user's points?
by
You'll have to remove all content that generates points (e.g. upvotes, downvotes, selected answers, answers, questions, etc). Why would you do that?

1 Answer

0 votes
by
log in to your phpMyAdmin or mysql and run the following command#

UPDATE qa_userpoints SET points = "0";
by
That's not how points work in Q2A. That's just a denormalized value to allow for quick access. A point change would reset the update
...