You are here

function biblio_pm_update_6001 in Bibliography Module 6.2

File

modules/pubmed/biblio_pm.install, line 73
Database table creation for biblio_pm module.

Code

function biblio_pm_update_6001() {
  $result = array();
  $spec = array(
    'description' => 'The Unix timestamp when the pmid was most recently saved.',
    'type' => 'int',
    'not null' => TRUE,
    'default' => 0,
  );
  db_add_field($result, 'biblio_pubmed', 'biblio_pm_changed', $spec);
  $spec = array(
    'type' => 'int',
    'not null' => TRUE,
    'default' => 0,
  );
  db_add_field($result, 'biblio_pubmed', 'biblio_pmcid', $spec);
  return $result;
}