odea/config/_sql/EnrichissementIdentifiants.sql
2012-02-22 11:37:39 +00:00

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;