You are here

function quiz_question_update_7501 in Quiz 7.5

Same name and namespace in other branches
  1. 7.6 question_types/quiz_question/quiz_question.install \quiz_question_update_7501()

Drop table {quiz_question_latest_quizzes}.

File

question_types/quiz_question/quiz_question.install, line 121
The installer file for quiz_question.

Code

function quiz_question_update_7501() {
  db_drop_table('quiz_question_latest_quizzes');
  return t('Dropped table {quiz_question_latest_quizzes}');
}