You are here

function og_vocab_update_6001 in OG Vocabulary 6

Update the vocabualry table where the module is 'og_vocab' to 'taxonomy'.

File

./og_vocab.install, line 75
Install file for the og_vocab module.

Code

function og_vocab_update_6001() {
  $ret = array();
  db_query("UPDATE {vocabulary} SET module = '%s' WHERE module ='%s'", 'taxonomy', 'og_vocab');
  return $ret;
}