You are here

function biblio_update_6043 in Bibliography Module 6.2

File

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

Code

function biblio_update_6043() {
  $result = array();
  if (!biblio_db_field_exists('biblio_contributor_aka_data', 'alt_form')) {
    $spec = array(
      'type' => 'int',
      'not null' => TRUE,
      'default' => 0,
      'unsigned' => TRUE,
      'description' => '',
    );
    db_add_field($result, 'biblio_contributor_aka_data', 'alt_form', $spec);
  }
  return $result;
}