From e608c838b2b2033de05082ad8e75395212de79be Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sat, 3 Dec 2005 22:09:09 +0000 Subject: [PATCH] =?UTF-8?q?Supprime=20table=20jamais=20utilis=E9e=20et=20o?= =?UTF-8?q?bsolete?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mysql/tables/llx_contact_facture.sql | 32 ----------------------- pgsql/tables/llx_contact_facture.sql | 38 ---------------------------- 2 files changed, 70 deletions(-) delete mode 100644 mysql/tables/llx_contact_facture.sql delete mode 100644 pgsql/tables/llx_contact_facture.sql diff --git a/mysql/tables/llx_contact_facture.sql b/mysql/tables/llx_contact_facture.sql deleted file mode 100644 index 497ec24c247..00000000000 --- a/mysql/tables/llx_contact_facture.sql +++ /dev/null @@ -1,32 +0,0 @@ --- ============================================================================ --- Copyright (C) 2001-2004 Rodolphe Quiedeville --- --- This program is free software; you can redistribute it and/or modify --- it under the terms of the GNU General Public License as published by --- the Free Software Foundation; either version 2 of the License, or --- (at your option) any later version. --- --- This program is distributed in the hope that it will be useful, --- but WITHOUT ANY WARRANTY; without even the implied warranty of --- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the --- GNU General Public License for more details. --- --- You should have received a copy of the GNU General Public License --- along with this program; if not, write to the Free Software --- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. --- --- $Id$ --- $Source$ --- --- Contact pour la facturation client --- --- ============================================================================ - -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; diff --git a/pgsql/tables/llx_contact_facture.sql b/pgsql/tables/llx_contact_facture.sql deleted file mode 100644 index 9d1aee214d2..00000000000 --- a/pgsql/tables/llx_contact_facture.sql +++ /dev/null @@ -1,38 +0,0 @@ --- Generated from dolibarr_mysql2pgsql --- (c) 2004, PostgreSQL Inc. --- (c) 2005, Laurent Destailleur. - --- ============================================================================ --- Copyright (C) 2001-2004 Rodolphe Quiedeville --- --- This program is free software; you can redistribute it and/or modify --- it under the terms of the GNU General Public License as published by --- the Free Software Foundation; either version 2 of the License, or --- (at your option) any later version. --- --- This program is distributed in the hope that it will be useful, --- but WITHOUT ANY WARRANTY; without even the implied warranty of --- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the --- GNU General Public License for more details. --- --- You should have received a copy of the GNU General Public License --- along with this program; if not, write to the Free Software --- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. --- --- $Id$ --- $Source$ --- --- Contact pour la facturation client --- --- ============================================================================ - - -create table llx_contact_facture -( - idp SERIAL PRIMARY KEY, - "fk_soc" integer NOT NULL, - "fk_contact" integer NOT NULL, -- point sur llx_socpeople - UNIQUE(fk_soc, fk_contact) -); - -CREATE INDEX idx_llx_contact_facture_fk_soc_fk_contact ON llx_contact_facture (fk_soc, fk_contact);