You are here

function quiz_update_7524 in Quiz 7.5

Remove old db structure for randomised questions.

File

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

Code

function quiz_update_7524() {
  if (db_field_exists('quiz_node_properties', 'tid')) {
    db_drop_field('quiz_node_properties', 'tid');
  }
}