function coder_update_2 in Coder 6.2
Same name and namespace in other branches
- 6 coder.install \coder_update_2()
File
- ./
coder.install, line 80 - Install, update and uninstall functions for the coder module.
Code
function coder_update_2() {
$ret = array();
// Create the new coder cache table.
db_create_table($ret, 'cache_coder', _coder_cache_schema());
// Clear coder entries from the default cache.
cache_clear_all('coder:', 'cache', TRUE);
return $ret;
}