@swaptoo
Run this in MySQL:
CREATE TABLE `ost_thread_entry` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`pid` int unsigned NOT NULL DEFAULT '0',
`thread_id` int unsigned NOT NULL DEFAULT '0',
`staff_id` int unsigned NOT NULL DEFAULT '0',
`user_id` int unsigned NOT NULL DEFAULT '0',
`type` char(1) NOT NULL DEFAULT '',
`flags` int unsigned NOT NULL DEFAULT '0',
`poster` varchar(128) NOT NULL DEFAULT '',
`editor` int unsigned DEFAULT NULL,
`editor_type` char(1) DEFAULT NULL,
`source` varchar(32) NOT NULL DEFAULT '',
`title` varchar(255) DEFAULT NULL,
`body` text NOT NULL,
`format` varchar(16) NOT NULL DEFAULT 'html',
`ip_address` varchar(64) NOT NULL DEFAULT '',
`recipients` text,
`created` datetime NOT NULL,
`updated` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `pid` (`pid`),
KEY `thread_id` (`thread_id`),
KEY `staff_id` (`staff_id`),
KEY `type` (`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
Cheers.