Modif fichier en fichier_cdr et ajout cl sur fk_fournisseur

This commit is contained in:
Rodolphe Quiedeville 2005-03-10 09:42:35 +00:00
parent dfdd3e2be8
commit fa28985ff8

View File

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