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:57:03 +00:00
parent 4a5bb8a327
commit 1b112b4bb2

View File

@ -85,4 +85,4 @@ alter table llx_product add column accountancy_code_sell varchar(15) aft
alter table llx_product add column accountancy_code_buy varchar(15) after accountancy_code_sell;
ALTER TABLE llx_product drop column stock_loc;
ALTER TABLE llx_product add column location varchar(32);
ALTER TABLE llx_product_stock add column location varchar(32);