You are here

function nodewords_update_6302 in Nodewords: D6 Meta Tags 6.3

Implements hook_update_N().

File

./nodewords.install, line 232
Install, update and uninstall functions for the Nodewords module.

Code

function nodewords_update_6302() {
  $ret = array();
  db_add_unique_key($ret, 'nodewords', 'nodewords_type_ids_name_lang', array(
    'type',
    'id',
    'sid',
    'name',
    'language',
  ));
  return $ret;
}