Modification ordre des champs

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

View File

@ -22,8 +22,8 @@
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)
);