You are here

function coder_review_update_1 in Coder 7

Clear the cache.

File

coder_review/coder_review.install, line 36
Install, update and uninstall functions for the coder_review module.

Code

function coder_review_update_1() {
  $ret = array();

  // This update adds a theming function, so we need to clear the entire cache.
  $ret[] = update_sql("DELETE FROM {cache}");
  return $ret;
}