View Single Post
  #2  
Old 10-15-2006, 09:26 AM
  wjbrewer's Avatar 
wjbrewer wjbrewer is offline
Banned
 

X-Adept
  
Join Date: Feb 2005
Location: Pittsburgh, PA
Posts: 504
 

Default Re: uninstalling mods

If there are single fields in a table use a SQL statement like this

ALTER TABLE xcart_tablename DROP fieldname;
(replace xcart_tablename with the name of the table, and cellname with the name of the field)

If it is a full table use this

DROP TABLE tablename;

Enter the SQL queries in the Patch/Upgrade section...and don't forget to backup your database, in case there are any problems.
Reply With Quote