You are here

function pay_update_6002 in Pay 6

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

Add a "mail" column to the pay_transaction table.

File

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

Code

function pay_update_6002() {
  $ret = array();
  db_add_column($ret, 'pay_transaction', 'mail', 'varchar(200)');
  return $ret;
}