diff --git a/views/reviews.views.inc b/views/reviews.views.inc
index a75377e..8b5fe98 100644
--- a/views/reviews.views.inc
+++ b/views/reviews.views.inc
@@ -69,6 +69,28 @@ function reviews_views_data() {
     ),
   );
 
+  // The review status.
+  $data['reviews']['status'] = array(
+    'title' => t('Published'),
+    'help' => t('Whether or not the review is published.'),
+    'field' => array(
+      'handler' => 'views_handler_field_boolean',
+      'click sortable' => TRUE, // This is use by the table display plugin.
+      'output formats' => array(
+        'published-notpublished' => array(t('Published'), t('Not published')),
+      ),
+    ),
+    'filter' => array(
+      'handler' => 'views_handler_filter_boolean_operator',
+      'label' => t('Published'),
+      'type' => 'yes-no',
+      'use equal' => TRUE, // Use status = 1 instead of status <> 0 in WHERE statment
+    ),
+    'sort' => array(
+      'handler' => 'views_handler_sort',
+    ),
+  );
+
   // Add the reviews_count table to the group.
   $data['reviews_count']['table']['group'] = t('Reviews');
 
