You are here

function quiz_update_7500 in Quiz 7.6

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

Add new layout field to the quiz_node_results table.

File

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

Code

function quiz_update_7500() {
  $spec = array(
    'serialize' => TRUE,
    'type' => 'text',
    'description' => "Serialized layout data.",
    'size' => 'medium',
  );
  db_add_field('quiz_node_results', 'layout', $spec);
  return t('Added new layout field to the quiz_node_results table');
}