From 1b112b4bb29d35492668a5b3f439fec092b35cc9 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Wed, 17 Mar 2010 11:57:03 +0000 Subject: [PATCH] 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. --- htdocs/install/mysql/migration/2.8.0-2.9.0.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/install/mysql/migration/2.8.0-2.9.0.sql b/htdocs/install/mysql/migration/2.8.0-2.9.0.sql index 4e9cb7cb692..9a13faf6693 100755 --- a/htdocs/install/mysql/migration/2.8.0-2.9.0.sql +++ b/htdocs/install/mysql/migration/2.8.0-2.9.0.sql @@ -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);