You are here

function payment_update_7106 in Payment 7

Make quantity accept float values

File

./payment.install, line 452
Installation and uninstallation functions.

Code

function payment_update_7106(array &$sandbox) {
  db_change_field('payment_line_item', 'quantity', 'quantity', array(
    'type' => 'float',
    'size' => 'big',
    'default' => 1.0,
    'not null' => TRUE,
  ));
}