You are here

function og_update_6205 in Organic groups 6.2

Add an index on og_uid.uid.

File

./og.install, line 452

Code

function og_update_6205() {
  $ret = array();
  db_add_index($ret, 'og_uid', 'uid', array(
    'uid',
  ));
  return $ret;
}