function biblio_update_7007 in Bibliography Module 7
Same name and namespace in other branches
- 7.2 biblio.install \biblio_update_7007()
Increases the size of the {biblio_contributor_data}.name column to 255 characters.
File
- ./
biblio.install, line 2117
Code
function biblio_update_7007() {
$spec = array(
'type' => 'varchar',
'length' => '255',
'not null' => TRUE,
'default' => '',
'description' => 'Full name',
);
db_change_field('biblio_contributor_data', 'name', 'name', $spec);
}