You are here

function pay_update_6002 in Pay 7

Same name and namespace in other branches
  1. 6 pay.install \pay_update_6002()

Add a "mail" column to the pay_transaction table.

File

./pay.install, line 322
Pay module allows for accepting payments against a node using pluggable payment backends.

Code

function pay_update_6002() {
  db_add_field('pay_transaction', 'mail', array(
    'type' => 'varchar',
    'length' => 200,
  ));
  return t('Added a "mail" column to the pay_transaction table.');
}