You are here

function quiz_update_7510 in Quiz 7.6

Same name and namespace in other branches
  1. 7.5 quiz.install \quiz_update_7510()

Add build_on_last to optionally rebuild each attempt on the last.

File

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

Code

function quiz_update_7510() {
  db_add_field('quiz_node_properties', 'build_on_last', array(
    'type' => 'varchar',
    'length' => 255,
    'not null' => TRUE,
    'default' => '',
  ));
}