function uc_taxes_update_6002 in Ubercart 6.2
File
- uc_taxes/
uc_taxes.install, line 120 - Install, update and uninstall functions for the uc_taxes module.
Code
function uc_taxes_update_6002() {
$ret = array();
if (!db_column_exists('uc_taxes', 'shippable')) {
db_add_field($ret, 'uc_taxes', 'shippable', array(
'type' => 'int',
'size' => 'tiny',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
));
}
return $ret;
}