You are here

function biblio_update_6030 in Bibliography Module 6.2

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

Update ...

This update function ...

Return value

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

File

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

Code

function biblio_update_6030() {
  $result = array();
  $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($result, 'biblio_contributor_data', 'literal', $spec);
  return $result;
}