You are here

function views_schema_6010 in Views (for Drupal 7) 7.3

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

Remove the view_php field.

File

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

Code

function views_schema_6010() {
  $schema = views_schema(__FUNCTION__);
  unset($schema['views_view']['fields']['view_php']);
  unset($schema['views_view']['fields']['is_cacheable']);
  return $schema;
}