You are here

function quiz_update_7520 in Quiz 7.5

Change summary_pass_format to NULLable.

File

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

Code

function quiz_update_7520() {
  db_change_field('quiz_node_properties', 'summary_pass_format', 'summary_pass_format', array(
    'type' => 'varchar',
    'length' => 255,
    'not null' => FALSE,
    'description' => 'Input format for the passing summary text.',
  ));
}