2
0
forked from Wavyzz/dolibarr

On recr table paiement fournisseurs pour ceux qui ont rat cette table.

This commit is contained in:
Laurent Destailleur
2006-05-25 16:25:14 +00:00
parent f4dc5df637
commit 20b176dab2

View File

@@ -6,6 +6,17 @@
-- --
create table llx_paiementfourn_facturefourn
(
rowid integer AUTO_INCREMENT PRIMARY KEY,
fk_paiementfourn INT(11) DEFAULT NULL,
fk_facturefourn INT(11) DEFAULT NULL,
amount DOUBLE DEFAULT '0'
) TYPE=innodb;
ALTER TABLE llx_paiementfourn_facturefourn ADD INDEX idx_paiementfourn_facturefourn_fk_facture(fk_facturefourn);
ALTER TABLE llx_paiementfourn_facturefourn ADD INDEX idx_paiementfourn_facturefourn_fk_paiement(fk_paiementfourn);
drop table if exists llx_commande_model_pdf; drop table if exists llx_commande_model_pdf;
drop table if exists llx_commande_fournisseur_model_pdf; drop table if exists llx_commande_fournisseur_model_pdf;