function views_schema_6013
3.x views.install | views_schema_6013() |
2.x views.install | views_schema_6013() |
Add a human readable name.
1 call to views_schema_6013()
File
- ./
views.install, line 501 - 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;
}