Ajout du champ "partnumber" afin de stocker la rfrence constructeur du produit

This commit is contained in:
Regis Houssin 2007-09-07 18:04:01 +00:00
parent 2f5b7807cd
commit 3f3cc0935b
2 changed files with 4 additions and 1 deletions

View File

@ -870,4 +870,6 @@ ALTER TABLE llx_product_fournisseur_price ADD INDEX idx_product_fournisseur_pric
ALTER TABLE llx_product_fournisseur_price_log DROP COLUMN fk_soc;
ALTER TABLE llx_product_fournisseur_price_log CHANGE fk_product fk_product_fournisseur integer NOT NULL;
ALTER TABLE llx_commande_fournisseurdet MODIFY fk_commande integer NOT NULL;
ALTER TABLE llx_commande_fournisseurdet MODIFY fk_commande integer NOT NULL;
ALTER TABLE llx_product_fournisseur ADD COLUMN partnumber varchar(30) after ref_fourn;

View File

@ -28,6 +28,7 @@ create table llx_product_fournisseur
fk_product integer,
fk_soc integer,
ref_fourn varchar(30),
partnumber varchar(30),
fk_user_author integer,
key(fk_product),