# For Uninstalling Configuration data for Cross Sell mod:
SET @t4=0;
SELECT (@t4:=configuration_group_id) as t4
FROM configuration_group
WHERE configuration_group_title= 'Cross Sell';
DELETE FROM configuration WHERE configuration_group_id = @t4;
DELETE FROM configuration_group WHERE configuration_group_id = @t4;
DELETE FROM `configuration_group` WHERE `configuration_group_title` LIKE '%Cross Sell%';
DELETE FROM `configuration_group` WHERE `configuration_group_title` LIKE '%Cross-Sell%';
DELETE FROM `configuration` WHERE `configuration_key` LIKE '%XSELL%';
DROP TABLE IF EXISTS products_xsell;
# This DROP is for Module Manager:
DROP TABLE IF EXISTS module_version_tracker;