function forum_update_7000

Add new index to forum table.

File

drupal/modules/forum/forum.install, line 261
Install, update, and uninstall functions for the Forum module.

Code

function forum_update_7000() {
  db_drop_index('forum', 'nid');
  db_add_index('forum', 'forum_topic', array(
    'nid',
    'tid',
  ));
}