Fabrice Posted April 6, 2009 Share Posted April 6, 2009 impossible d'installer la base :'CREATE TABLE `ps_customer_group` ( `id_customer` int(10) unsigned NOT NULL, `id_group` int(10) unsigned NOT NULL, KEY `customer_group_index` (`id_customer`,`id_group`), ) ENGINE=MyISAM DEFAULT CHARSET=utf8'You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \') ENGINE=MyISAM DEFAULT CHARSET=utf8\' at line 5(Erreur : : 1064)ohé les aventuriers de la SVN perdue : zavez le même problème, ou c'est juste chez moi que ça merdouille ? Link to comment Share on other sites More sharing options...
Fabrice Posted April 6, 2009 Author Share Posted April 6, 2009 pour ceux qui suivent... -CREATE TABLE `PREFIX_customer_group` ( `id_customer` int(10) unsigned NOT NULL, `id_group` int(10) unsigned NOT NULL, KEY `customer_group_index` (`id_customer`,`id_group`),) ENGINE=MyISAM DEFAULT CHARSET=utf8;y'a une virgule en trop (avant-dernière ligne)ça devient donc (sur instal complète)CREATE TABLE `PREFIX_customer_group` ( `id_customer` int(10) unsigned NOT NULL, `id_group` int(10) unsigned NOT NULL, KEY `customer_group_index` (`id_customer`,`id_group`)) ENGINE=MyISAM DEFAULT CHARSET=utf8;Merci Rémi le magnifique !! :-) Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now