function customfilter_update_6104 in Custom filter 6
Same name and namespace in other branches
- 7.2 customfilter.install \customfilter_update_6104()
- 7 customfilter.install \customfilter_update_6104()
Implements hook_update_N().
File
- ./
customfilter.install, line 317 - Installation file for Custom filter.
Code
function customfilter_update_6104() {
$ret = array();
$schema = drupal_get_schema_unprocessed('system', 'cache');
$schema['description'] = 'Cache table for the Custom filter module to store information about the custom filter, and the replacement rules.';
if (!db_table_exists('cache_customfilter')) {
db_create_table($ret, 'cache_customfilter', $schema);
}
return $ret;
}