You are here

function nodewords_update_6137 in Nodewords: D6 Meta Tags 6

Same name and namespace in other branches
  1. 6.2 nodewords.install \nodewords_update_6137()

Implements hook_update_N().

File

./nodewords.install, line 805
Installation file for nodewords.module.

Code

function nodewords_update_6137() {
  $ret = array();
  if (!variable_get('nodewords_update_6113', FALSE)) {
    db_add_index($ret, 'nodewords', 'nodewords_id', array(
      array(
        'id',
        6,
      ),
    ));
    db_add_index($ret, 'nodewords', 'nodewords_type', array(
      array(
        'type',
        6,
      ),
    ));
  }
  return $ret;
}