diff --git a/contrib/search_api_views/search_api_views.views.inc b/contrib/search_api_views/search_api_views.views.inc
index a87e5bc..dd04738 100644
--- a/contrib/search_api_views/search_api_views.views.inc
+++ b/contrib/search_api_views/search_api_views.views.inc
@@ -149,6 +149,20 @@ function search_api_views_views_data() {
         $table['search_api_views_taxonomy_term']['argument']['handler'] = 'SearchApiViewsHandlerArgumentTaxonomyTerm';
         $table['search_api_views_taxonomy_term']['argument']['vocabulary_fields'] = $vocabulary_fields;
       }
+
+      // See if VBO is installed and, if so, add the VBO fields.
+      if (module_exists('views_bulk_operations')) {
+        $table['views_bulk_operations'] = array(
+          'title' => $index->name,
+          'group' => t('Bulk operations'),
+          'help' => t('Provide a checkbox to select the row for bulk operations.'),
+          'real field' => $entity_types[$index->getEntityType()]['entity keys']['id'],
+          'field' => array(
+            'handler' => 'views_bulk_operations_handler_field_operations',
+            'click sortable' => FALSE,
+          ),
+        );
+      }
     }
     return $data;
   }
