You are here

function views_update_6010 in Views (for Drupal 7) 6.2

Same name and namespace in other branches
  1. 6.3 views.install \views_update_6010()
  2. 7.3 views.install \views_update_6010()

Remove the view_php and is_cacheable field

File

./views.install, line 469
views.install Contains install and update functions for Views.

Code

function views_update_6010() {
  $ret = array();
  db_drop_field($ret, 'views_view', 'view_php');
  db_drop_field($ret, 'views_view', 'is_cacheable');
  return $ret;
}