Fix: Uniformize field type

This commit is contained in:
Laurent Destailleur 2013-03-02 16:39:26 +01:00
parent 51d23d7c48
commit fc46a02573
2 changed files with 3 additions and 1 deletions

View File

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

View File

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