function views_update_8001 in Views (for Drupal 7) 8.3
Rename the {cache_views} and {cache_views_data} tables.
File
- ./
views.install, line 67 - Contains install and update functions for Views.
Code
function views_update_8001() {
db_rename_table('cache_views', 'cache_views_info');
db_rename_table('cache_views_data', 'cache_views_results');
}