From 20b176dab2e67c9a64fd4225ad7b7ad8ffc246cc Mon Sep 17 00:00:00 2001
From: Laurent Destailleur <eldy@users.sourceforge.net>
Date: Thu, 25 May 2006 16:25:14 +0000
Subject: [PATCH] =?UTF-8?q?On=20recr=E9=20table=20paiement=20fournisseurs?=
 =?UTF-8?q?=20pour=20ceux=20qui=20ont=20rat=E9=20cette=20table.?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 mysql/migration/2.0.0-2.1.0.sql | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/mysql/migration/2.0.0-2.1.0.sql b/mysql/migration/2.0.0-2.1.0.sql
index 23eabdbd05c..3733c6bb491 100644
--- a/mysql/migration/2.0.0-2.1.0.sql
+++ b/mysql/migration/2.0.0-2.1.0.sql
@@ -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;
 
-- 
GitLab