MyBB Community Forums

Full Version: How to delete all existing polls?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How could I remove all existing polls from all of the threads on my forum?
execute this query in your database
UPDATE mybb_threads SET poll = 0;
TRUNCATE mybb_polls;
TRUNCATE mybb_pollvotes;