You are here

function qpcache_update_6101 in QueryPath 7.3

Same name and namespace in other branches
  1. 6 qpcache/qpcache.install \qpcache_update_6101()
  2. 7.2 qpcache/qpcache.install \qpcache_update_6101()

File

qpcache/qpcache.install, line 24
The installer file for qpcache.

Code

function qpcache_update_6101() {
  $spec = array(
    'type' => 'int',
    'size' => 'big',
    'not null' => TRUE,
    'unsigned' => FALSE,
    'default' => 0,
  );
  db_change_field('qpcache_xmlcache', 'crckey', 'crckey', $spec);
  return;
}