taxonomy_field_schema
- Versions
- 7
taxonomy_field_schema($field)
Implements hook_field_schema().
Code
modules/taxonomy/taxonomy.module, line 1020
<?php
function taxonomy_field_schema($field) {
return array(
'columns' => array(
'tid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => FALSE,
),
),
'indexes' => array(
'tid' => array('tid'),
),
);
}
?>Login or register to post comments 