You are here

function uc_quote_update_6003 in Ubercart 6.2

Implements hook_update_N().

File

shipping/uc_quote/uc_quote.install, line 243
Install, update and uninstall functions for the uc_quote module.

Code

function uc_quote_update_6003() {

  // This is the same update as #8, but it was added after 6002 was published.
  $ret = array();
  $ret[] = update_sql("DELETE FROM {uc_quote_shipping_types} WHERE id = 0");
  return $ret;
}