You are here

function biblio_update_6011 in Bibliography Module 6

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

File

./biblio.install, line 1604
Install file for 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;
}