From cbc6e15570a4836ac6f1553050d39094b9922aa6 Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Thu, 12 May 2005 10:50:59 +0000 Subject: [PATCH] Nouveaux champs --- htdocs/telephonie/sql/llx_telephonie_tarif.sql | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/htdocs/telephonie/sql/llx_telephonie_tarif.sql b/htdocs/telephonie/sql/llx_telephonie_tarif.sql index 4e50c5265ea..f50ba4571a2 100644 --- a/htdocs/telephonie/sql/llx_telephonie_tarif.sql +++ b/htdocs/telephonie/sql/llx_telephonie_tarif.sql @@ -20,14 +20,15 @@ -- -- ======================================================================== -- +-- +-- tlink lien vers un tarif, permets la mise à jour par exemple de tous les tarifs +-- découpés par pays. create table llx_telephonie_tarif ( - rowid integer AUTO_INCREMENT PRIMARY KEY, - libelle varchar(255), - libelle_facture varchar(255), - libelle_fournisseur varchar(255), - mobile tinyint, - international tinyint + rowid integer AUTO_INCREMENT PRIMARY KEY, + libelle varchar(255), + type enum ('INT','NAT','MOB'), + tlink integer DEFAULT 0 UNIQUE INDEX(libelle) )type=innodb;