diff --git a/htdocs/telephonie/sql/llx_telephonie_communications_details.sql b/htdocs/telephonie/sql/llx_telephonie_communications_details.sql index 249e4a68c3f..575d383d3f7 100644 --- a/htdocs/telephonie/sql/llx_telephonie_communications_details.sql +++ b/htdocs/telephonie/sql/llx_telephonie_communications_details.sql @@ -9,13 +9,17 @@ create table llx_telephonie_communications_details ( fourn_cout varchar(255), fourn_montant real, duree integer, -- duree en secondes - tarif_achat_temp real, -- fournisseur tarif temporel - tarif_achat_fixe real, -- fournisseur tarif temporel - tarif_vente_temp real, -- fournisseur tarif temporel - tarif_vente_fixe real, -- fournisseur tarif temporel + tarif_achat_temp real, + tarif_achat_fixe real, + tarif_vente_temp real, + tarif_vente_fixe real, cout_achat real, cout_vente real, - remise real + remise real, + fichier_cdr varchar(255), + fk_fournisseur integer, + + key (fk_fournisseur) )type=innodb;