From b3af6c33ff37ac892637addf49bed41fb2d7b11b Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Mon, 7 Mar 2005 18:37:08 +0000 Subject: [PATCH] Nouveau fichier --- .../telephonie/sql/llx_telephonie_simul.sql | 30 ++++++++++++++ .../sql/llx_telephonie_simul_comm.sql | 39 +++++++++++++++++++ 2 files changed, 69 insertions(+) create mode 100644 htdocs/telephonie/sql/llx_telephonie_simul.sql create mode 100644 htdocs/telephonie/sql/llx_telephonie_simul_comm.sql diff --git a/htdocs/telephonie/sql/llx_telephonie_simul.sql b/htdocs/telephonie/sql/llx_telephonie_simul.sql new file mode 100644 index 00000000000..1f9aa6912ba --- /dev/null +++ b/htdocs/telephonie/sql/llx_telephonie_simul.sql @@ -0,0 +1,30 @@ +-- ======================================================================== +-- Copyright (C) 2005 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_simul ( + rowid integer AUTO_INCREMENT PRIMARY KEY, + description text, + cout_achat real, + cout_vente real + +)type=innodb; + diff --git a/htdocs/telephonie/sql/llx_telephonie_simul_comm.sql b/htdocs/telephonie/sql/llx_telephonie_simul_comm.sql new file mode 100644 index 00000000000..235090870cd --- /dev/null +++ b/htdocs/telephonie/sql/llx_telephonie_simul_comm.sql @@ -0,0 +1,39 @@ +-- ======================================================================== +-- Copyright (C) 2005 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_simul_comm ( + fk_simulation integer, + fk_ligne integer, + ligne varchar(255) NOT NULL, + date datetime, + numero varchar(255), + dest varchar(255), + cout_achat real, + cout_vente real, + duree integer, -- duree en secondes + tarif_achat_temp real, + tarif_achat_fixe real, + tarif_vente_temp real, + tarif_vente_fixe real + +)type=innodb; +