You are here

function biblio_update_6037 in Bibliography Module 6.2

Update ...

This update function ...

Return value

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

File

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

Code

function biblio_update_6037() {
  $result = array();
  $spec = array(
    'type' => 'blob',
    'not null' => FALSE,
    'description' => '',
    'serialize' => TRUE,
  );
  db_add_field($result, 'biblio', 'biblio_formats', $spec);
  return $result;
}