function biblio_bibtex_update_6201 in Bibliography Module 6.2
File
- modules/
bibtexParse/ biblio_bibtex.install, line 175 - Database table creation for biblio_bibtex module.
Code
function biblio_bibtex_update_6201() {
$result = array();
$spec = array(
'type' => 'varchar',
'length' => 255,
'not null' => FALSE,
);
db_add_field($result, 'biblio_bibtex', 'biblio_bibtex_id', $spec);
return $result;
}