You are here

function og_update_6204 in Organic groups 6.2

Add index 'group_nid' to og_ancestry table.

File

./og.install, line 443

Code

function og_update_6204() {
  $ret = array();
  db_add_index($ret, 'og_ancestry', 'group_nid', array(
    'group_nid',
  ));
  return $ret;
}