You are here

function payment_update_7100 in Payment 7

Adds the psiid_first field to {payment}.

See also

payment_update_7105()

File

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

Code

function payment_update_7100(&$sandbox) {
  db_add_field('payment', 'psiid_first', array(
    'type' => 'int',
    'unsigned' => TRUE,
    'default' => 0,
    'not null' => TRUE,
  ));
}