You are here

function biblio_update_6011 in Bibliography Module 6.2

Same name and namespace in other branches
  1. 6 biblio.install \biblio_update_6011()

Update ...

This update function ...

Return value

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

File

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

Code

function biblio_update_6011() {
  $result = array();
  $schema = biblio_schema();
  if (!db_table_exists('biblio_import_cache')) {
    db_create_table($result, 'biblio_import_cache', $schema['biblio_import_cache']);
  }
  return $result;
}