You are here

function long_answer_update_7401 in Quiz 7.5

Same name and namespace in other branches
  1. 8.4 question_types/long_answer/long_answer.install \long_answer_update_7401()
  2. 7.6 question_types/long_answer/long_answer.install \long_answer_update_7401()
  3. 7.4 question_types/long_answer/long_answer.install \long_answer_update_7401()

Adding feedback field to table {quiz_long_answer_user_answers}.

File

question_types/long_answer/long_answer.install, line 106
Long_answer questions install file.

Code

function long_answer_update_7401() {
  if (!db_field_exists('quiz_long_answer_user_answers', 'answer_feedback')) {
    $spec = array(
      'type' => 'text',
      'not null' => FALSE,
    );
    db_add_field('quiz_long_answer_user_answers', 'answer_feedback', $spec);
  }
}