Revu de la structure des tables d'enrichissements

This commit is contained in:
Michael RICOIS 2012-02-22 11:37:39 +00:00
parent 9a97455d5b
commit a66664c166
2 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,6 @@
CREATE TABLE IF NOT EXISTS `enrichissement_fichiers` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`idCommande` int(11) NOT NULL DEFAULT '0',
`fichier` int(11) NOT NULL,
PRIMARY KEY (`id`)
) DEFAULT CHARSET=utf8;

View File

@ -1,6 +1,7 @@
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;