function forum_update_7000
Add new index to forum table.
Archivo
- drupal-7.x/
modules/ forum/ forum.install, line 261 - Install, update, and uninstall functions for the Forum module.
Código
function forum_update_7000() {
db_drop_index('forum', 'nid');
db_add_index('forum', 'forum_topic', array('nid', 'tid'));
}