Created
February 16, 2016 01:21
-
-
Save molotovbliss/61d4090b8e314a66ed0a to your computer and use it in GitHub Desktop.
Delete all color option values in Magento SQL
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Delete all color option values (attribute 80 default) | |
DELETE ov.* | |
FROM eav_attribute_option_value AS ov | |
JOIN eav_attribute_option AS o | |
ON o.option_id = ov.option_id | |
WHERE o.attribute_id = 80; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment