You are here

function uc_atctweaks_uninstall in UC Add to Cart Tweaks 6

Same name and namespace in other branches
  1. 7 uc_atctweaks.install \uc_atctweaks_uninstall()

File

./uc_atctweaks.install, line 52
Installs the necessary table for the Add to Cart Tweaks product features.

Code

function uc_atctweaks_uninstall() {
  drupal_uninstall_schema('uc_atctweaks');
  db_query("DELETE FROM {uc_product_features} WHERE fid = 'atctweaks'");
}