You are here

function quiz_update_6402 in Quiz 6.4

Implementation of hook_update_N()

Adding a field to turn on/off questions skipping in quiz.

File

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

Code

function quiz_update_6402() {
  $result = array();
  db_add_field($result, 'quiz_node_properties', 'allow_skipping', array(
    'type' => 'int',
    'size' => 'small',
    'not null' => TRUE,
    'default' => 0,
  ));
  return $result;
}