You are here

function autotag_schema in Taxonomy Autotagger 6.2

Same name and namespace in other branches
  1. 6 autotag.install \autotag_schema()

hook_schema

File

./autotag.install, line 17

Code

function autotag_schema() {
  return array(
    'autotag' => array(
      'fields' => array(
        'nid' => array(
          'type' => 'int',
          'not null' => true,
        ),
        'tid' => array(
          'type' => 'int',
          'not null' => true,
        ),
      ),
      'primary key' => array(
        'nid',
        'tid',
      ),
    ),
  );
}