I have add a field \"mystock\" in product table of prestashop database. Now i want to display/edit this filed in edit product page. It also be update when product will updat
Thanks altafhussain. You have to add your field to both 'products_shop' and 'products' tables.
ALTER TABLE ps_product_shop ADD `mystock` int NOT NULL DEFAULT 0; ALTER TABLE ps_product ADD `mystock` int NOT NULL DEFAULT 0;
I'm using ps 1.6.0.6