Modif nom des champs

This commit is contained in:
Rodolphe Quiedeville 2005-02-14 16:49:43 +00:00
parent e0e4bf3a77
commit 63017ecc76

View File

@ -1,5 +1,5 @@
-- ======================================================================== -- ========================================================================
-- Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org> -- Copyright (C) 2004-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
-- --
-- This program is free software; you can redistribute it and/or modify -- 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 -- it under the terms of the GNU General Public License as published by
@ -21,14 +21,14 @@
-- ======================================================================== -- ========================================================================
create table llx_telephonie_import_cdr ( create table llx_telephonie_import_cdr (
ligne int, idx integer,
client varchar(255), ligne varchar(255) NOT NULL,
date varchar(255), date varchar(255) NOT NULL,
heure varchar(255), heure varchar(255) NOT NULL,
num varchar(255), num varchar(255) NOT NULL,
dest varchar(255), dest varchar(255) NOT NULL,
dureetext varchar(255), dureetext varchar(255) NOT NULL,
tarif varchar(255), tarif varchar(255) NOT NULL,
montant real, montant real NOT NULL,
duree integer duree integer NOT NULL
)type=innodb; )type=innodb;