You are here

function views_schema_6012 in Views (for Drupal 7) 6.3

Add a human readable name.

File

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

Code

function views_schema_6012() {
  $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;
}