function pay_update_6007 in Pay 7
Same name and namespace in other branches
- 6 pay.install \pay_update_6007()
Remove my actions from the actions table so that they get re-read.
File
- ./
pay.install, line 431 - Pay module allows for accepting payments against a node using pluggable payment backends.
Code
function pay_update_6007() {
db_delete('actions')
->condition('type', "pay_transaction")
->execute();
return t('Removed my actions from the actions table so that they get re-read.');
}