You are here

function views_schema_6013 in Views (for Drupal 7) 7.3

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

Add a human readable name.

1 call to views_schema_6013()
views_schema_7300 in ./views.install

File

./views.install, line 504
Contains install and update functions for Views.

Code

function views_schema_6013() {
  $schema = views_schema(__FUNCTION__);
  $schema['views_view']['fields']['human_name'] = array(
    'type' => 'varchar',
    'length' => '255',
    'default' => '',
    'description' => 'A human readable name used to be displayed in the admin interface',
  );
  return $schema;
}