You are here

function uc_fedex_update_6200 in FedEx Shipping 6.2

Same name and namespace in other branches
  1. 7.2 uc_fedex.install \uc_fedex_update_6200()

Implements hook_update().

File

./uc_fedex.install, line 126
Install, update, and uninstall functions for the uc_fedex module.

Code

function uc_fedex_update_6200() {
  $ret = array();
  $schema = drupal_get_schema('uc_fedex_products', TRUE);
  db_create_table($ret, 'uc_fedex_products', $schema);
  return $ret;
}