You are here

function uc_cart_update_6203 in Ubercart 6.2

Increase maximum cart item quantity.

File

uc_cart/uc_cart.install, line 197
Install hooks for uc_cart.module.

Code

function uc_cart_update_6203() {
  $ret = array();
  db_change_field($ret, 'uc_cart_products', 'qty', 'qty', array(
    'description' => 'The number of this product in the cart.',
    'type' => 'int',
    'unsigned' => TRUE,
    'not null' => TRUE,
    'default' => 0,
  ));
  return $ret;
}