You are here

function uc_store_update_6006 in Ubercart 6.2

Remove price cache.

File

uc_store/uc_store.install, line 282
Install, update, and uninstall functions for the uc_store module.

Code

function uc_store_update_6006() {
  $ret = array();
  if (db_table_exists('cache_uc_price')) {
    db_drop_table($ret, 'cache_uc_price');
  }
  variable_del('uc_price_caching');
  return $ret;
}