function views_update_7300 in Views (for Drupal 7) 7.3
Make sure the human_name field is added to the views_view table.
If you updated from 6.x-2.x-dev to 7.x-3.x you already had schema version 6014, so update 6013 never was nor will be run. As a result, the human_name field is missing from the database.
This will add the human_name field if it doesn't already exist.
File
- ./
views.install, line 614 - Contains install and update functions for Views.
Code
function views_update_7300() {
views_update_6013();
}