odea/config/_sql/EnrichissementIdentifiants.sql

8 lines
258 B
MySQL
Raw Normal View History

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;