Remove field stock_loc because location of product in a warehouse can't be set into the product table as it can differs between warehouses. Such feature must be stored in the join table.

This commit is contained in:
Laurent Destailleur 2010-03-17 11:51:51 +00:00
parent 46a5d637aa
commit 5d5eb3c829

View File

@ -83,3 +83,5 @@ alter table llx_product add column surface_units tinyint DEFAULT NUL
alter table llx_product add column accountancy_code_sell varchar(15) after fk_barcode_type;
alter table llx_product add column accountancy_code_buy varchar(15) after accountancy_code_sell;
ALTER TABLE llx_product drop column stock_loc;