Fix: Can use decimal for kilometers or amounts

This commit is contained in:
Laurent Destailleur 2008-07-12 13:06:11 +00:00
parent 5bf4a7203e
commit 1c4bde3022
2 changed files with 2 additions and 1 deletions

View File

@ -324,6 +324,7 @@ create table llx_c_type_fees
alter table llx_deplacement modify type varchar(12) NOT NULL;
alter table llx_deplacement modify km real;
insert into llx_c_type_fees (code,libelle,active) values ('TF_OTHER', 'Other', 1);
insert into llx_c_type_fees (code,libelle,active) values ('TF_TRIP', 'Trip', 1);

View File

@ -27,7 +27,7 @@ create table llx_deplacement
fk_user integer NOT NULL,
fk_user_author integer,
type varchar(12) NOT NULL,
km smallint,
km real,
fk_soc integer,
note text
)type=innodb;