Skip to content
Snippets Groups Projects
Commit fc46a025 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: Uniformize field type

parent 51d23d7c
No related branches found
No related tags found
No related merge requests found
......@@ -80,3 +80,5 @@ alter table llx_societe_address CHANGE COLUMN cp zip varchar(10);
ALTER TABLE llx_c_shipment_mode ADD COLUMN tracking VARCHAR(256) NOT NULL AFTER description;
ALTER TABLE llx_c_shipment_mode MODIFY COLUMN rowid INT(11) NOT NULL AUTO_INCREMENT;
ALTER TABLE llx_stock_mouvement MODIFY COLUMN value real;
......@@ -24,7 +24,7 @@ create table llx_stock_mouvement
datem datetime,
fk_product integer NOT NULL,
fk_entrepot integer NOT NULL,
value integer,
value real,
price float(13,4) DEFAULT 0,
type_mouvement smallint,
fk_user_author integer,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment