You are here

function biblio_update_6029 in Bibliography Module 6.2

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

Update ...

This update function ...

Return value

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

File

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

Code

function biblio_update_6029() {
  $result = array();
  $spec = array(
    'type' => 'blob',
    'not null' => FALSE,
    'default' => NULL,
    'size' => 'big',
    'description' => 'Stores the mapping between biblio fields and external file formats',
  );
  db_add_field($result, 'biblio_type_maps', 'export_map', $spec);
  return $result;
}