Modif ordre des champs dans paiement_facture

This commit is contained in:
Rodolphe Quiedeville 2004-02-02 09:17:49 +00:00
parent c9b5abd5fe
commit be1665484e

View File

@ -59,9 +59,8 @@ 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,
fk_facture integer,
unique key (fk_facture,fk_paiement)
unique key (fk_paiement,fk_facture)
);