Please help me with my FATAL ERROR

Anyone know how to fix this error?
I deleted the LUM_IpHistory table from my database and now I'm getting this error on the home page...
"A fatal, non-recoverable error has occurred
Technical information (for support personel):
Error Message
An error occurred while attempting to retrieve the requested information.
Affected Elements
WhosOnline.GetGuestCount();
The error occurred on or near: Unknown column 'i.RemoteIp' in 'field list'
For additional support documentation, visit the Lussumo Documentation website at: lussumo.com/docs"
0
Comments
Here's the code to recreate it:
CREATE TABLE IF NOT EXISTS `LUM_IpHistory` ( `IpHistoryID` int(11) NOT NULL auto_increment, `RemoteIp` varchar(30) NOT NULL default '', `UserID` int(11) NOT NULL default '0', `DateLogged` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`IpHistoryID`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
Next time use the TRUNCATE command
If you download Vanilla from the website and unzip it, you can see inside the
setup/
folder the.sql
file used to create entire database.Don't execute that entire file! Open it up in a text editor and use the
CREATE TABLE
lines to rebuild your database tables.After that, do a backup
http://lussumo.com/community/discussion/9355/cant-login-to-forum/#Item_8