Fix: [ bug #1517 ] Packages sizes

This commit is contained in:
Laurent Destailleur 2014-07-02 20:10:44 +02:00
parent ea310efba5
commit de527365a8
2 changed files with 15 additions and 6 deletions

View File

@ -18,6 +18,15 @@
-- -- VMYSQL4.1 DELETE FROM llx_usergroup_user WHERE fk_usergroup NOT IN (SELECT rowid from llx_usergroup);
ALTER TABLE llx_expedition MODIFY COLUMN height float;
ALTER TABLE llx_expedition MODIFY COLUMN width float;
ALTER TABLE llx_expedition MODIFY COLUMN size float;
ALTER TABLE llx_expedition MODIFY COLUMN weight float;
ALTER TABLE llx_societe DROP COLUMN datea;
ALTER TABLE llx_holiday ADD COLUMN fk_user_create integer;

View File

@ -42,12 +42,12 @@ create table llx_expedition
tracking_number varchar(50),
fk_statut smallint DEFAULT 0,
height integer, -- height
width integer, -- with
height float, -- height
width float, -- with
size_units integer, -- unit of all sizes (height, width, depth)
size integer, -- depth
size float, -- depth
weight_units integer, -- unit of weight
weight integer, -- weight
weight float, -- weight
note_private text,
note_public text,
model_pdf varchar(255)