From 3b5c68a9710a35fa8cb9c913b2210a60ec0a2c73 Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Mon, 2 Feb 2004 09:08:37 +0000 Subject: [PATCH] Ajout table llx_paiement_facture --- mysql/migration/1.1.0-1.2.0-RC1.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/mysql/migration/1.1.0-1.2.0-RC1.sql b/mysql/migration/1.1.0-1.2.0-RC1.sql index 25211f92ef3..8dda4b6773b 100644 --- a/mysql/migration/1.1.0-1.2.0-RC1.sql +++ b/mysql/migration/1.1.0-1.2.0-RC1.sql @@ -55,3 +55,13 @@ alter table c_pays rename llx_c_pays ; alter table c_stcomm rename llx_c_stcomm ; 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, + + unique key (fk_facture,fk_paiement) +); +