You are here

function biblio_update_6032 in Bibliography Module 6.2

Same name and namespace in other branches
  1. 7 biblio.install \biblio_update_6032()
  2. 7.2 biblio.install \biblio_update_6032()

Update ...

This update function ...

Return value

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

File

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

Code

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