I faced the same problem, and what I did is to replace 'name' with 'id' instead :
CREATE TABLE `tblCategory` (
`id` int(11) NOT NULL auto_increment,
`name` text NOT NULL,
PRIMARY KEY (`id`),
UNIQUE (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
Note : You may see some duplicate tables error afterwards as some tables were created halfway before this error. But the overall creation should have completed successfully.
CREATE TABLE `tblCategory` (
`id` int(11) NOT NULL auto_increment,
`name` text NOT NULL,
PRIMARY KEY (`id`),
UNIQUE (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
Note : You may see some duplicate tables error afterwards as some tables were created halfway before this error. But the overall creation should have completed successfully.