YanK1973 Posted March 10, 2017 Share Posted March 10, 2017 Hello. After a product migration somehow i have some "ghost" data appearing in Product features customized values. Instead of going to each product one by one, how can i delete all customized features values from phpmyadmin or elsewhere? I don't see or cannot find a special table for customized values and i don't want to mess other feature values. Prestashop 1.6 Link to comment Share on other sites More sharing options...
rocky Posted March 11, 2017 Share Posted March 11, 2017 You can run an SQL query like the following: DELETE FROM `ps_feature_value_lang` WHERE `id_feature_value` IN (SELECT `id_feature_value` FROM `ps_feature_value` WHERE `custom` = 1); DELETE FROM `ps_feature_value` WHERE `custom` = 1; Change ps_ to your database prefix. Remember to back up the ps_feature_value and ps_feature_value_lang table first in case something goes wrong. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now