You are here

function long_answer_update_6402 in Quiz 6.4

Implementation of hook_update_N()

Adding feedback field to table {quiz_short_answer_user_answers}

File

question_types/long_answer/long_answer.install, line 170
Long answer questions.

Code

function long_answer_update_6402() {
  $to_return = array();
  $spec = array(
    'type' => 'text',
    'not null' => FALSE,
  );
  db_add_field($to_return, 'quiz_long_answer_user_answers', 'answer_feedback', $spec);
  return $to_return;
}