You are here

function biblio_update_7007 in Bibliography Module 7.2

Same name and namespace in other branches
  1. 7 biblio.install \biblio_update_7007()

Increases the size of the {biblio_contributor_data}.name column to 255 characters

File

./biblio.install, line 1731

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);
}