taxonomy_field_schema

7 taxonomy.install taxonomy_field_schema($field)
8 taxonomy.install taxonomy_field_schema($field)

Implements hook_field_schema().

File

modules/taxonomy/taxonomy.install, line 229
Install, update and uninstall functions for the taxonomy module.

Code

function taxonomy_field_schema($field) {
  return array(
    'columns' => array(
      'tid' => array(
        'type' => 'int', 
        'unsigned' => TRUE, 
        'not null' => FALSE,
      ),
    ), 
    'indexes' => array(
      'tid' => array('tid'),
    ), 
    'foreign keys' => array(
      'tid' => array(
        'table' => 'taxonomy_term_data', 
        'columns' => array('tid' => 'tid'),
      ),
    ),
  );
}
Login or register to post comments