You are here

function amazon_update_6008 in Amazon Product Advertisement API 6

Change listpriceamount field to numeric. It's not floating anyway.

File

./amazon.install, line 257

Code

function amazon_update_6008() {
  $ret = array();
  db_change_field($ret, 'amazon_item', 'listpriceamount', 'listpriceamount', array(
    'type' => 'numeric',
  ));
  return $ret;
}