You are here

function quiz_update_7412 in Quiz 7.4

Adding nid index to the quiz_node_results table

File

./quiz.install, line 829
Quiz install schema for installing the quiz module

Code

function quiz_update_7412(&$sandbox) {
  db_add_index('quiz_node_results', 'nid', array(
    'nid',
  ));
}