Revu de la structure des tables d'enrichissements
This commit is contained in:
parent
9a97455d5b
commit
a66664c166
6
config/_sql/EnrichissementFichiers.sql
Normal file
6
config/_sql/EnrichissementFichiers.sql
Normal 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;
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user