You are here

function amazon_update_6016 in Amazon Product Advertisement API 6

Increase the length of the mpn field.

File

./amazon.install, line 353

Code

function amazon_update_6016() {
  $ret = array();
  db_change_field($ret, 'amazon_item', 'mpn', 'mpn', array(
    'type' => 'varchar',
    'length' => 255,
  ));
  return $ret;
}