You are here

function quiz_update_7515 in Quiz 7.5

Add allow_change_blank property.

File

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

Code

function quiz_update_7515() {
  db_add_field('quiz_node_properties', 'allow_change_blank', array(
    'type' => 'int',
    'size' => 'tiny',
    'not null' => TRUE,
    'default' => 0,
    'description' => 'Boolean indicating whether a user can change the answer to a skipped question.',
  ));
}