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