You are here

function support_update_7004 in Support Ticketing System 7

Fix a performance issue with the primary key on {support_assigned}.

File

./support.install, line 747
Install, update and uninstall functions for the ._support module.

Code

function support_update_7004() {
  db_drop_primary_key('support_assigned');
  db_add_primary_key('support_assigned', array(
    'nid',
    'uid',
  ));
}