You should be able to execute this query to create the table (but double-check to make sure the name is correct):
CREATE TABLE IF NOT EXISTS `surveys.lime_survey_links` (
`participant_id` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
`token_id` int(11) NOT NULL,
`survey_id` int(11) NOT NULL,
`date_created` datetime DEFAULT NULL,
`date_invited` datetime DEFAULT NULL,
`date_completed` datetime DEFAULT NULL,
PRIMARY KEY (`participant_id`,`token_id`,`survey_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;