function biblio_pm_schema in Bibliography Module 6
Same name and namespace in other branches
- 6.2 modules/pubmed/biblio_pm.install \biblio_pm_schema()
- 7 modules/pubmed/biblio_pm.install \biblio_pm_schema()
- 7.2 modules/pubmed/biblio_pm.install \biblio_pm_schema()
Implementation of hook_schema().
Note: Pro Drupal Development models use of t() to translate 'description' for field definitions, but Drupal core does not use them. We follow core.
File
- pubmed/
biblio_pm.install, line 32 - Database table creation for biblio_pm module.
Code
function biblio_pm_schema() {
$schema = array();
$schema['biblio_pubmed'] = array(
'fields' => array(
'biblio_pubmed_id' => array(
'type' => 'int',
'not null' => TRUE,
),
'nid' => array(
'type' => 'int',
'not null' => TRUE,
),
'biblio_pubmed_md5' => array(
'type' => 'char',
'length' => 32,
'not null' => TRUE,
),
),
'primary key' => array(
'nid',
),
);
return $schema;
}