I installed a mod that required a sql patch, but I need to uninstall because I have an error and I need to see if this caused it or not. But there's no uninstall patch...how would I do this? (there's also no support thread for the mod and No, I did not back up my db )

This is the install patch:

DROP TABLE IF EXISTS customers_basket_later;
CREATE TABLE customers_basket_later (
customers_basket_id int(11) NOT NULL auto_increment,
customers_id int(11) NOT NULL default '0',
products_id tinytext NOT NULL,
customers_basket_quantity float NOT NULL default '0',
final_price decimal(15,4) NOT NULL default '0.0000',
customers_basket_date_added varchar(8) default NULL,
PRIMARY KEY (customers_basket_id),
KEY idx_customers_id_zen (customers_id)
) TYPE=MyISAM;

# --------------------------------------------------------

#
# Table structure for table 'customers_basket_attributes'
#

DROP TABLE IF EXISTS customers_basket_later_attributes;
CREATE TABLE customers_basket_later_attributes (
customers_basket_attributes_id int(11) NOT NULL auto_increment,
customers_id int(11) NOT NULL default '0',
products_id tinytext NOT NULL,
products_options_id varchar(64) NOT NULL default '0',
products_options_value_id int(11) NOT NULL default '0',
products_options_value_text BLOB NULL,
products_options_sort_order text NOT NULL,
PRIMARY KEY (customers_basket_attributes_id),
KEY idx_cust_id_prod_id_zen (customers_id,products_id(36))
) TYPE=MyISAM;