You are here

function biblio_update_6028 in Bibliography Module 7.2

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

File

./biblio.install, line 1558

Code

function biblio_update_6028() {
  $ret = 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;
  return $ret;
}