You are here

function pay_update_6007 in Pay 6

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

Remove my actions from the actions table so that they get re-read.

File

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

Code

function pay_update_6007() {
  $ret = array();
  update_sql("DELETE FROM {actions} WHERE TYPE = 'pay_transaction'");
  return $ret;
}