Respond to node deletion.
This hook is invoked from node_delete_multiple() after the type-specific hook_delete() has been invoked, but before hook_entity_delete and field_attach_delete() are called, and before the node is removed from the node table in the database.
$node: The node that is being deleted.
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
function hook_node_delete($node) {
db_delete('mytable')
->condition('nid', $node->nid)
->execute();
}