You are here

function views_schema_6010 in Views (for Drupal 7) 6.2

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

Remove the view_php field

File

./views.install, line 459
views.install 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;
}