Table pour l'enregistrement des identifiants afin de réaliser l'enrichissement

This commit is contained in:
Michael RICOIS 2012-02-21 14:37:11 +00:00
parent faf22f9755
commit d10344ae41

View File

@ -0,0 +1,6 @@
CREATE TABLE IF NOT EXISTS `enrichissement_identifiants` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`idComptage` int(11) NOT NULL,
`identifiants` longtext NOT NULL,
PRIMARY KEY (`id`)
) DEFAULT CHARSET=utf8;