function views_schema_6010 in Views (for Drupal 7) 7.3
Same name and namespace in other branches
- 6.3 views.install \views_schema_6010()
- 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;
}