Nouveau fichier & Copyright

This commit is contained in:
Rodolphe Quiedeville 2004-12-03 10:26:39 +00:00
parent 80e1e7a4a7
commit a2b77d78d9
2 changed files with 18 additions and 12 deletions

View File

@ -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);

View File

@ -1,7 +1,24 @@
-- ========================================================================
-- Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
--
-- 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);
--