MyBB Community Forums

Full Version: warningsystem
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is it possible to delete all warns given.
I mean to start with a new clean database.

dees
I don't think so without a plug-in
Quick and dirty; run these queries:

TRUNCATE `mybb_warnings`;
UPDATE `mybb_users` SET `warningpoints` = '0';
@mattrogowski

Thanks

It works.

Dees