function views_schema_6011 in Views (for Drupal 7) 7.3
Remove views_object_cache table and move the data to ctools_object_cache.
File
- ./
views.install, line 470 - Contains install and update functions for Views.
Code
function views_schema_6011() {
$schema = views_schema(__FUNCTION__);
unset($schema['views_object_cache']);
return $schema;
}