Bug:
When I do an export of my DB and tries to import it again, I get an error on several tp tables. One of them is:
DROP TABLE IF EXISTS `test_tp_events`;
CREATE TABLE `test_tp_events` (
id int(11) NOT NULL auto_increment,
id_member int(11) NOT NULL,
date int(11) NOT NULL,
textvariable mediumtext NOT NULL,
link mediumtext NOT NULL,
description mediumtext NOT NULL,
allowed mediumtext NOT NULL,
eventid int(11),
on tinyint(4),
PRIMARY KEY (id)
) TYPE=MyISAM;
The last colums is called "on" which is a reserved word in MySql: