Ajout de la table llx_co_pr

This commit is contained in:
Rodolphe Quiedeville 2004-11-26 08:02:47 +00:00
parent e58b0ef496
commit 30061ef730

View File

@ -108,6 +108,15 @@ create table llx_co_fa
key(fk_facture)
)type=innodb;
create table llx_co_pr
(
rowid integer AUTO_INCREMENT PRIMARY KEY,
fk_commande integer,
fk_propale integer
)type=innodb;
create table llx_paiement_facture
(
rowid integer AUTO_INCREMENT PRIMARY KEY,