Index: server/pifr_server.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/project_issue_file_review/server/pifr_server.install,v
retrieving revision 1.43
diff -u -r1.43 pifr_server.install
--- server/pifr_server.install	19 Dec 2009 01:21:53 -0000	1.43
+++ server/pifr_server.install	19 Dec 2009 01:28:50 -0000
@@ -213,12 +213,6 @@
         'length' => 255,
         'default' => '',
       ),
-      'require_pass' => array(
-        'description' => t('Require the environment to pass in order to pass the review.'),
-        'type' => 'int',
-        'unsigned' => TRUE,
-        'not null' => TRUE,
-      ),
       'client' => array(
         'description' => t('The client ID(s) to restrict environment to.'),
         'type' => 'varchar',
@@ -553,3 +547,14 @@
 
   return $schema;
 }
+
+/**
+ * Remove 'require_pass' field from 'pifr_environment'.
+ */
+function pifr_server_update_6200() {
+  $ret = array();
+
+  db_drop_field($ret, 'pifr_environment', 'require_pass');
+
+  return $ret;
+}
Index: server/pifr_server.environment.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/project_issue_file_review/server/pifr_server.environment.inc,v
retrieving revision 1.15
diff -u -r1.15 pifr_server.environment.inc
--- server/pifr_server.environment.inc	19 Dec 2009 00:00:22 -0000	1.15
+++ server/pifr_server.environment.inc	19 Dec 2009 01:28:50 -0000
@@ -22,7 +22,6 @@
     $environment = array(
       'title' => '',
       'description' => '',
-      'require_pass' => FALSE,
       'client' => '',
       'project' => '',
       'branch' => '',
@@ -56,12 +55,6 @@
     '#description' => t('Description of the environment.'),
     '#default_value' => $environment['description'],
   );
-  $form['environment']['require_pass'] = array(
-    '#type' => 'checkbox',
-    '#title' => t('Require pass'),
-    '#description' => t('Require the environment to pass in order for the test to be marked as a success.'),
-    '#default_value' => $environment['require_pass'],
-  );
 
   $form['environment']['condition'] = array(
     '#type' => 'fieldset',
Index: server/views/pifr_server.views_default.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/project_issue_file_review/server/views/pifr_server.views_default.inc,v
retrieving revision 1.24
diff -u -r1.24 pifr_server.views_default.inc
--- server/views/pifr_server.views_default.inc	18 Nov 2009 02:13:58 -0000	1.24
+++ server/views/pifr_server.views_default.inc	19 Dec 2009 01:28:51 -0000
@@ -1167,37 +1167,6 @@
       ),
       'relationship' => 'none',
     ),
-    'require_pass' => array(
-      'label' => 'Require pass',
-      'alter' => array(
-        'alter_text' => 0,
-        'text' => '',
-        'make_link' => 0,
-        'path' => '',
-        'link_class' => '',
-        'alt' => '',
-        'prefix' => '',
-        'suffix' => '',
-        'target' => '',
-        'help' => '',
-        'trim' => 0,
-        'max_length' => '',
-        'word_boundary' => 1,
-        'ellipsis' => 1,
-        'strip_tags' => 0,
-        'html' => 0,
-      ),
-      'empty' => '',
-      'hide_empty' => 0,
-      'empty_zero' => 0,
-      'type' => 'yes-no',
-      'not' => 0,
-      'exclude' => 0,
-      'id' => 'require_pass',
-      'table' => 'pifr_environment',
-      'field' => 'require_pass',
-      'relationship' => 'none',
-    ),
     'nothing' => array(
       'label' => 'Operations',
       'alter' => array(
@@ -1251,7 +1220,6 @@
       'environment_id' => 'environment_id',
       'description' => 'description',
       'environment_key' => 'environment_key',
-      'require_pass' => 'require_pass',
     ),
     'info' => array(
       'environment_id' => array(
@@ -1264,10 +1232,6 @@
       'environment_key' => array(
         'separator' => '',
       ),
-      'require_pass' => array(
-        'sortable' => 1,
-        'separator' => '',
-      ),
     ),
     'default' => 'environment_id',
   ));
Index: server/views/pifr_server.views.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/project_issue_file_review/server/views/pifr_server.views.inc,v
retrieving revision 1.18
diff -u -r1.18 pifr_server.views.inc
--- server/views/pifr_server.views.inc	4 Dec 2009 20:29:08 -0000	1.18
+++ server/views/pifr_server.views.inc	19 Dec 2009 01:28:50 -0000
@@ -330,22 +330,6 @@
     ),
   );
 
-  $data['pifr_environment']['require_pass'] = array(
-    'title' => t('Require pass'),
-    'help' => t('Require the environment to pass in order for the test to pass.'),
-    'field' => array(
-     'handler' => 'views_handler_field_boolean',
-     'click sortable' => TRUE,
-    ),
-    'filter' => array(
-      'handler' => 'views_handler_filter_boolean_operator',
-      'label' => t('Require pass'),
-    ),
-    'sort' => array(
-      'handler' => 'views_handler_sort',
-    ),
-  );
-
   // ----------------------------------------------------------------
   // pifr_file table -- basic table information.
 
