Reputation: 13
I am importing a products csv from Magento admin. I want to know which tables are effected by the product import.
Upvotes: 1
Views: 3428
Reputation: 248
There's a great breakdown of affected tables on new product creation here:
Upvotes: 1
Reputation: 398
actually magento using EAV model.so there are many tables which is using for store product information. In controller file you will get expoprtCSV() method which is responsible for generate csv file.
Upvotes: 0