You are here

function biblio_update_6030 in Bibliography Module 7.2

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

File

./biblio.install, line 1579

Code

function biblio_update_6030() {
  $spec = array(
    'type' => 'int',
    'not null' => TRUE,
    'default' => 0,
    'unsigned' => TRUE,
    'description' => 'Determines if the author name is allowed to be reformated by the variaous styles or should be used literally.',
  );
  db_add_field('biblio_contributor_data', 'literal', $spec);
}