You are here

function coder_update_2 in Coder 6

Same name and namespace in other branches
  1. 6.2 coder.install \coder_update_2()

File

./coder.install, line 75

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;
}