Try running this SQL and see if it works:
CREATE TABLE `epc_calendar` (
`id` int(7) NOT NULL auto_increment,
`startDate` int(11) NOT NULL default '0',
`endDate` int(11) NOT NULL default '0',
`startTime` time NOT NULL default '00:00:00',
`endTime` time NOT NULL default '00:00:00',
`eventType` text NOT NULL,
`repeatx` int(7) NOT NULL default '0',
`title` text NOT NULL,
`descr` text NOT NULL,
`days` int(7) NOT NULL default '0',
`stop` int(7) NOT NULL default '0',
`month` tinyint(2) NOT NULL default '0',
`weekDay` tinyint(1) NOT NULL default '0',
`weekNumber` tinyint(1) NOT NULL default '0',
`category` text NOT NULL,
`eventKey` text NOT NULL,
PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=1 ;
|