You are here

function biblio_update_6028 in Bibliography Module 6.2

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

Update ...

This update function ...

Return value

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

File

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

Code

function biblio_update_6028() {
  $result = array();
  $table = drupal_get_schema_unprocessed('system', 'cache');
  $table['description'] = 'Cache table for biblio to store pre-built csl objects';
  $table['fields']['serialized']['default'] = 1;
  db_create_table($result, 'cache_biblio_csl_object', $table);
  return $resultt;
}