You are here

function coder_update_1 in Coder 6.2

Same name and namespace in other branches
  1. 6 coder.install \coder_update_1()

File

./coder.install, line 73
Install, update and uninstall functions for the coder module.

Code

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