You are here

function biblio_update_6038 in Bibliography Module 6.2

Widen the biblio_contributor_data.lastname column to 255 characters

This update function ...

Return value

array An array of associaive arrays with 'success' and 'query' keys.

File

./biblio.install, line 2778
Install, update, and uninstall functions for the biblio module.

Code

function biblio_update_6038() {
  $result = array();
  $spec = array(
    'type' => 'varchar',
    'length' => '255',
    'not null' => TRUE,
    'default' => '',
    'description' => 'Author last name',
  );
  db_change_field($result, 'biblio_contributor_data', 'lastname', 'lastname', $spec);
  return $result;
}