CREATE TABLE `mt_ts_error` (
`ts_error_error_time` INT(11) NOT NULL,
`ts_error_funcid` INT(11) NOT NULL DEFAULT '0',
`ts_error_jobid` INT(11) NOT NULL,
`ts_error_message` VARCHAR(255) NOT NULL,
INDEX `mt_ts_error_funcid_time` (`ts_error_funcid`, `ts_error_error_time`),
INDEX `mt_ts_error_error_time` (`ts_error_error_time`),
INDEX `mt_ts_error_jobid` (`ts_error_jobid`)
)