You are here

function biblio_update_6042 in Bibliography Module 6.2

File

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

Code

function biblio_update_6042() {
  $result = array();
  $spec = array(
    'type' => 'int',
    'not null' => TRUE,
    'default' => 0,
    'unsigned' => TRUE,
    'description' => '',
  );
  db_add_field($result, 'biblio_contributor_data', 'alt_form', $spec);
  return $result;
}