function biblio_pm_update_7002 in Bibliography Module 7
Change field type for biblio_pmcid field to the biblio_pubmed table.
File
- modules/
pubmed/ biblio_pm.install, line 144  - Database table creation for biblio_pm module.
 
Code
function biblio_pm_update_7002() {
  $spec = array(
    'type' => 'varchar',
    'length' => 20,
    'not null' => FALSE,
  );
  db_change_field('biblio_pubmed', 'biblio_pmcid', 'biblio_pmcid', $spec);
}