function browscap_update_6000 in Browscap 6
Add the browscap cache table.
File
- ./
browscap.install, line 120 - Install, update and uninstall functions for the Browscap module.
Code
function browscap_update_6000() {
$ret = array();
if (!db_column_exists('cache_browscap', 'serialized')) {
db_add_field($ret, 'cache_browscap', 'serialized', array(
'type' => 'int',
'size' => 'small',
'not null' => TRUE,
'default' => 0,
));
}
return $ret;
}