MyBB Community Forums

Full Version: reset ratings?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how to i can reset ratings only for one of my subforums?

its possible make a query?
The ratings are stored in the table mybb_threadratings but you need the table mybb_threads to filter what ratings will be deleted.

In theory you have to delete entries from table mybb_threadratings where its field tid match the field tidof the table mybb_threads IF fid of said mybb_threads is equal to the forum ID you need.

In practice my SQL is a bit rusty, so I'm sure someone here can translate this into a working syntax.

From that point I believe you still need to update counter fields in mybb_threads (numratingsand `totalratings), I don't know if this will be automatic.

I hope someone can help me completing this for you. Cheers! Smile