You are here

function uc_cart_update_6002 in Ubercart 6.2

Increase width of cart id to 255.

File

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

Code

function uc_cart_update_6002() {
  $ret = array();
  db_change_field($ret, 'uc_cart_products', 'cart_id', 'cart_id', array(
    'type' => 'varchar',
    'length' => 255,
    'not null' => TRUE,
    'default' => 0,
  ));
  return $ret;
}