Ajout table llx_paiement_facture

This commit is contained in:
Rodolphe Quiedeville 2004-02-02 09:08:37 +00:00
parent 66aec4cb32
commit 3b5c68a971

View File

@ -55,3 +55,13 @@ alter table c_pays rename llx_c_pays ;
alter table c_stcomm rename llx_c_stcomm ;
alter table c_typent rename llx_c_typent ;
create table llx_paiement_facture
(
rowid integer AUTO_INCREMENT PRIMARY KEY,
fk_facture integer,
fk_paiement integer,
unique key (fk_facture,fk_paiement)
);