function qpcache_update_6101 in QueryPath 6
Same name and namespace in other branches
- 7.3 qpcache/qpcache.install \qpcache_update_6101()
- 7.2 qpcache/qpcache.install \qpcache_update_6101()
File
- qpcache/
qpcache.install, line 36 - The installer file for qpcache.
Code
function qpcache_update_6101() {
$spec = array(
'type' => 'int',
'size' => 'big',
'not null' => TRUE,
'unsigned' => FALSE,
'default' => 0,
);
$ret = array();
db_change_field($ret, 'qpcache_xmlcache', 'crckey', 'crckey', $spec);
return $ret;
}