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