Update the module and base fields for the blog node type.
function system_update_8011() { db_update('node_type') ->fields(array( 'module' => 'node', 'base' => 'node_content', )) ->condition('module', 'blog') ->execute(); }