Hi,
I just made my first export with wamp 3
I only set it to zip file
it seems that the create table are missing fields and are corrupted, and so cannot be imported
CREATE TABLE `communication_mails` (
`id` int(11) NOT NULL,
`communication_id` int(11) NOT NULL,
`email_id` int(11) NOT NULL,
`type` tinyint(4) NOT NULL DEFAULT '0'COMMENT
) ;
see the last line
with mysqldump it works
CREATE TABLE `communication_mails` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`communication_id` int(11) NOT NULL,
`email_id` int(11) NOT NULL,
`type` tinyint(4) NOT NULL DEFAULT '0' COMMENT '0 departements emails 1 backend users emails',
PRIMARY KEY (`id`),
UNIQUE KEY `communication_id` (`communication_id`,`email_id`,`type`)
) ENGINE=InnoDB AUTO_INCREMENT=99 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
how can I solve this ? is there a patch ?
thanks
I just made my first export with wamp 3
I only set it to zip file
it seems that the create table are missing fields and are corrupted, and so cannot be imported
CREATE TABLE `communication_mails` (
`id` int(11) NOT NULL,
`communication_id` int(11) NOT NULL,
`email_id` int(11) NOT NULL,
`type` tinyint(4) NOT NULL DEFAULT '0'COMMENT
) ;
see the last line
with mysqldump it works
CREATE TABLE `communication_mails` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`communication_id` int(11) NOT NULL,
`email_id` int(11) NOT NULL,
`type` tinyint(4) NOT NULL DEFAULT '0' COMMENT '0 departements emails 1 backend users emails',
PRIMARY KEY (`id`),
UNIQUE KEY `communication_id` (`communication_id`,`email_id`,`type`)
) ENGINE=InnoDB AUTO_INCREMENT=99 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
how can I solve this ? is there a patch ?
thanks