2012-02-21 14:37:11 +00:00
|
|
|
CREATE TABLE IF NOT EXISTS `enrichissement_identifiants` (
|
|
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
|
|
`idComptage` int(11) NOT NULL,
|
2012-02-22 11:37:39 +00:00
|
|
|
`idCommande` int(11) NOT NULL DEFAULT '0',
|
2012-02-21 14:37:11 +00:00
|
|
|
`identifiants` longtext NOT NULL,
|
|
|
|
PRIMARY KEY (`id`)
|
|
|
|
) DEFAULT CHARSET=utf8;
|