Skip to content
Snippets Groups Projects
Commit 20b176da authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

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

parent f4dc5df6
No related branches found
No related tags found
No related merge requests found
......@@ -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_fournisseur_model_pdf;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment