Executes code after an action is deleted.
$aid: The action ID.
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
function hook_actions_delete($aid) {
db_delete('actions_assignments')
->condition('aid', $aid)
->execute();
}