You are here

function payment_update_7101 in Payment 7

Adds the amount_total field to {payment_line_item}.

See also

payment_update_7104()

File

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

Code

function payment_update_7101(&$sandbox) {
  db_add_field('payment_line_item', 'amount_total', array(
    'type' => 'float',
    'size' => 'big',
  ));
}