You are here

function uc_shipping_update_6002 in Ubercart 6.2

File

shipping/uc_shipping/uc_shipping.install, line 395
Install hooks for uc_shipping.module.

Code

function uc_shipping_update_6002() {
  $ret = array();
  db_change_field($ret, 'uc_packages', 'value', 'value', array(
    'type' => 'numeric',
    'precision' => 10,
    'scale' => 2,
    'not null' => FALSE,
  ));
  return $ret;
}