From 62e7758480a4d880b4d32f90d2d21ebc702d3849 Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Mon, 13 Sep 2004 07:33:13 +0000 Subject: [PATCH] Ajout table llx_contact_facture --- mysql/migration/1.1.0-1.2.0-RC1.sql | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) 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 826f2df645e..64d05e3176e 100644 --- a/mysql/migration/1.1.0-1.2.0-RC1.sql +++ b/mysql/migration/1.1.0-1.2.0-RC1.sql @@ -679,11 +679,31 @@ create table llx_societe_remise )type=innodb; + +-- +-- +create table llx_contact_facture +( + idp integer AUTO_INCREMENT PRIMARY KEY, + fk_soc integer NOT NULL, + fk_contact integer NOT NULL, -- point sur llx_socpeople + + UNIQUE (fk_soc, fk_contact) +)type=innodb; + + +-- +-- +-- +-- + create table llx_so_gr ( rowid integer AUTO_INCREMENT PRIMARY KEY, fk_soc integer, - fk_groupe integer + fk_groupe integer, + + UNIQUE(fk_soc, fk_groupe) )type=innodb; create table llx_groupesociete_remise