From a2b77d78d99a6426a6cd03eca4fb9d3a20c6772f Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Fri, 3 Dec 2004 10:26:39 +0000 Subject: [PATCH] Nouveau fichier & Copyright --- .../llx_telephonie_societe_ligne_statut.sql | 5 ---- .../sql/llx_telephonie_tarif_fournisseur.sql | 25 +++++++++++++------ 2 files changed, 18 insertions(+), 12 deletions(-) diff --git a/htdocs/telephonie/sql/llx_telephonie_societe_ligne_statut.sql b/htdocs/telephonie/sql/llx_telephonie_societe_ligne_statut.sql index 519a3dc35dc..26debad88d3 100644 --- a/htdocs/telephonie/sql/llx_telephonie_societe_ligne_statut.sql +++ b/htdocs/telephonie/sql/llx_telephonie_societe_ligne_statut.sql @@ -38,8 +38,3 @@ create table llx_telephonie_societe_ligne_statut ( )type=innodb; -ALTER TABLE llx_telephonie_societe_ligne_statut ADD INDEX (fk_ligne); -ALTER TABLE llx_telephonie_societe_ligne_statut ADD INDEX (fk_user); - -ALTER TABLE llx_telephonie_societe_ligne_statut ADD FOREIGN KEY (fk_ligne) REFERENCES llx_telephonie_societe_ligne(rowid); -ALTER TABLE llx_telephonie_societe_ligne_statut ADD FOREIGN KEY (fk_user) REFERENCES llx_user(rowid); diff --git a/htdocs/telephonie/sql/llx_telephonie_tarif_fournisseur.sql b/htdocs/telephonie/sql/llx_telephonie_tarif_fournisseur.sql index f80408a384c..9a101c2e26d 100644 --- a/htdocs/telephonie/sql/llx_telephonie_tarif_fournisseur.sql +++ b/htdocs/telephonie/sql/llx_telephonie_tarif_fournisseur.sql @@ -1,7 +1,24 @@ - +-- ======================================================================== +-- Copyright (C) 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$ +-- +-- ======================================================================== -- create table llx_telephonie_tarif_fournisseur ( rowid integer AUTO_INCREMENT PRIMARY KEY, @@ -13,9 +30,3 @@ create table llx_telephonie_tarif_fournisseur ( UNIQUE INDEX(fk_tarif, fk_fournisseur) )type=innodb; -ALTER TABLE llx_telephonie_tarif_fournisseur ADD INDEX (fk_tarif); -ALTER TABLE llx_telephonie_tarif_fournisseur ADD INDEX (fk_fournisseur); - -ALTER TABLE llx_telephonie_tarif_fournisseur ADD FOREIGN KEY (fk_tarif) REFERENCES llx_telephonie_tarif (rowid); -ALTER TABLE llx_telephonie_tarif_fournisseur ADD FOREIGN KEY (fk_fournisseur) REFERENCES llx_telephonie_fournisseur (rowid); ---