function uc_product_update_6002 in Ubercart 6.2
Makes the numeric fields signed for Postgres compatibility.
File
- uc_product/
uc_product.install, line 276 - Install, update and uninstall functions for the uc_product module.
Code
function uc_product_update_6002() {
$ret = array();
db_change_field($ret, 'uc_products', 'list_price', 'list_price', array(
'type' => 'numeric',
'precision' => 10,
'scale' => 2,
'not null' => TRUE,
'default' => 0,
));
db_change_field($ret, 'uc_products', 'cost', 'cost', array(
'type' => 'numeric',
'precision' => 10,
'scale' => 2,
'not null' => TRUE,
'default' => 0,
));
db_change_field($ret, 'uc_products', 'sell_price', 'sell_price', array(
'type' => 'numeric',
'precision' => 10,
'scale' => 2,
'not null' => TRUE,
'default' => 0,
));
return $ret;
}