mysql - #1064 - You have an error in your SQL syntax; -


hello following in mysql

#1064 - have error in sql syntax; check manual corresponds mysql server version right syntax use near 'create table `mod_solusvm_vps` (   `vpsid` int(255) not null auto_increment, ' @ line 1  

code:

create table `mod_solusvm_vps` (   `vpsid` int(255) not null auto_increment,   `clientid` varchar(255) not null,   `orderid` int(255) not null,   `hostid` int(255) not null,   `key` varchar(255) not null,   `hash` varchar(255) not null,   primary key (`vpsid`),   unique key `clientid` (`clientid`,`orderid`,`hostid`) ) engine=innodb  default charset=latin1 auto_increment=6 ; 

any on how fix appreciated