Fix: Can use decimal for kilometers or amounts
This commit is contained in:
parent
5bf4a7203e
commit
1c4bde3022
@ -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 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_OTHER', 'Other', 1);
|
||||||
insert into llx_c_type_fees (code,libelle,active) values ('TF_TRIP', 'Trip', 1);
|
insert into llx_c_type_fees (code,libelle,active) values ('TF_TRIP', 'Trip', 1);
|
||||||
|
|||||||
@ -27,7 +27,7 @@ create table llx_deplacement
|
|||||||
fk_user integer NOT NULL,
|
fk_user integer NOT NULL,
|
||||||
fk_user_author integer,
|
fk_user_author integer,
|
||||||
type varchar(12) NOT NULL,
|
type varchar(12) NOT NULL,
|
||||||
km smallint,
|
km real,
|
||||||
fk_soc integer,
|
fk_soc integer,
|
||||||
note text
|
note text
|
||||||
)type=innodb;
|
)type=innodb;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user