Below query I\'m executing in Ubuntu 12, MySQL 5.1 version and receiving error as mentioned:
CREATE TABLE mantis_config_table ( config_id VARCHAR(64) NOT
Do not use the keyword TYPE anymore. Use ENGINE instead.
TYPE
ENGINE
TYPE keyword is depreciated (since 5.0) and not supported in MySQL5.5
CREATE TABLE mantis_config_table ( ... ) ENGINE = MyISAM; ^^^^^^--------------------- HERE