You could simply add the table like this
Code:
CREATE TABLE IF NOT EXISTS `tracker_sessions` (
`id` int(11) NOT NULL auto_increment,
`session_id` varchar(36) default NULL,
`date_start` datetime default NULL,
`date_end` datetime default NULL,
`seconds` int(9) default '0',
`client_ip` varchar(20) default NULL,
`user_id` varchar(36) default NULL,
`active` tinyint(1) default '1',
`round_trips` int(5) default NULL,
`deleted` tinyint(1) default '0',
PRIMARY KEY (`id`),
KEY `idx_tracker_sessions_s_id` (`session_id`),
KEY `idx_tracker_sessions_uas_id` (`user_id`,`active`,`session_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
but my guess is that if this table didnt get created then I would think that there are other things that didnt get done. Is this an upgrade or a fresh install.
Bookmarks