You are here

function views_update_6010 in Views (for Drupal 7) 7.3

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

Remove the view_php and is_cacheable field.

File

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

Code

function views_update_6010() {
  db_drop_field('views_view', 'view_php');
  db_drop_field('views_view', 'is_cacheable');
}