You are here

function uc_product_update_6009 in Ubercart 6.2

Changes currency fields to numeric(16,5).

File

uc_product/uc_product.install, line 385
Install, update and uninstall functions for the uc_product module.

Code

function uc_product_update_6009() {
  $ret = array();
  db_change_field($ret, 'uc_products', 'list_price', 'list_price', array(
    'type' => 'numeric',
    'precision' => 16,
    'scale' => 5,
    'not null' => TRUE,
    'default' => 0,
  ));
  db_change_field($ret, 'uc_products', 'cost', 'cost', array(
    'type' => 'numeric',
    'precision' => 16,
    'scale' => 5,
    'not null' => TRUE,
    'default' => 0,
  ));
  db_change_field($ret, 'uc_products', 'sell_price', 'sell_price', array(
    'type' => 'numeric',
    'precision' => 16,
    'scale' => 5,
    'not null' => TRUE,
    'default' => 0,
  ));
  return $ret;
}