CoreBOSBB

Full Version: [solved] error at recreated a database
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I moved my database from my default server to another.

But in import, mySQL show error at key in vtoger_cbupdater table

ERROR 1071 (42000) at line 2216: Specified key was too long; max key length is 1000 bytes

At this point

CREATE TABLE `vtiger_cbupdater` (
 `cbupdaterid` int(11) NOT NULL DEFAULT '0',
 `cbupd_no` varchar(26) DEFAULT NULL,
 `author` varchar(83) DEFAULT NULL,
 `filename` varchar(218) DEFAULT NULL,
 `pathfilename` varchar(218) DEFAULT NULL,
 `classname` varchar(183) DEFAULT NULL,
 `execstate` varchar(56) DEFAULT NULL,
 `systemupdate` varchar(3) DEFAULT NULL,
 `blocked` varchar(3) DEFAULT NULL,
 `perspective` varchar(3) DEFAULT NULL,
 `execdate` date DEFAULT NULL,
 `execorder` int(11) DEFAULT NULL,
 PRIMARY KEY (`cbupdaterid`),
 UNIQUE KEY `findupdate` (`filename`,`classname`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;


How I can solved that?
I opted for redo, sever, BD and recreate all BD.

Works again.

Thanks.