You are here

function amazon_update_6013 in Amazon Product Advertisement API 6

Fix messed up type for currency code in 6012.

Return value

unknown_type

File

./amazon.install, line 319

Code

function amazon_update_6013() {
  db_change_field($ret, 'amazon_item', 'lowestpricecurrencycode', 'lowestpricecurrencycode', array(
    'type' => 'varchar',
    'length' => 32,
  ));
  db_change_field($ret, 'amazon_item', 'amazonpricecurrencycode', 'amazonpricecurrencycode', array(
    'type' => 'varchar',
    'length' => 32,
  ));
  return $ret;
}