8 lines
258 B
SQL
8 lines
258 B
SQL
CREATE TABLE IF NOT EXISTS `enrichissement_identifiants` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`idComptage` int(11) NOT NULL,
|
|
`idCommande` int(11) NOT NULL DEFAULT '0',
|
|
`identifiants` longtext NOT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) DEFAULT CHARSET=utf8;
|