Your database tables have not been created or updated as they should be. Did you run the installation script (install_warn.php), or did you create the tables manually?
Try re-running that script again, or manually run the following queries:
Code:
ALTER TABLE ".TABLE_PREFIX."warning_types ADD COLUMN warn_maturity int(5)
then
Code:
ALTER TABLE ".TABLE_PREFIX."user ADD COLUMN warnings int(5) default '0'
Remember to edit or remove the ".TABLE_PREFIX." thing according to your environment.
Rgds