You are here

function token_update_1 in Token 5

Same name and namespace in other branches
  1. 6 token.install \token_update_1()

File

./token.install, line 39
The install and update code for the token module.

Code

function token_update_1() {
  $ret = array();
  $ret[] = update_sql("UPDATE {system} SET weight = 10 WHERE name = 'token'");
  return $ret;
}