function uc_order_update_6020 in Ubercart 6.2
Increase maximum order item quantity.
File
- uc_order/
uc_order.install, line 1076 - Install, update and uninstall functions for the uc_order module.
Code
function uc_order_update_6020() {
$ret = array();
db_change_field($ret, 'uc_order_products', 'qty', 'qty', array(
'description' => 'The number of the same product ordered.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
));
return $ret;
}