You are here

function biblio_update_6041 in Bibliography Module 6.2

File

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

Code

function biblio_update_6041() {
  $result = array();
  $spec = array(
    'type' => 'int',
    'not null' => TRUE,
    'default' => 0,
    'unsigned' => TRUE,
    'description' => '',
  );
  db_add_field($result, 'biblio_contributor', 'merge_cid', $spec);
  db_add_index($result, 'biblio_contributor_data', 'name', array(
    'name',
  ));
  return $result;
}