You are here

function quiz_update_7519 in Quiz 7.5

Change pass_rate to NULL.

File

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

Code

function quiz_update_7519() {
  db_change_field('quiz_node_properties', 'pass_rate', 'pass_rate', array(
    'type' => 'int',
    'size' => 'tiny',
    'unsigned' => TRUE,
    'not null' => FALSE,
    'description' => 'Passing rate out of 100.',
  ));
}