Ajout référence dans les structures

This commit is contained in:
Michael RICOIS 2012-02-22 13:16:41 +00:00
parent 626795a877
commit f6e540eb64
2 changed files with 2 additions and 0 deletions

View File

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

View File

@ -2,6 +2,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',
`reference` varchar(50) NOT NULL,
`identifiants` longtext NOT NULL,
PRIMARY KEY (`id`)
) DEFAULT CHARSET=utf8;