-
Improvement
-
Resolution: Fixed
-
Blocker
-
2.6.1
-
MOODLE_26_STABLE
-
MOODLE_27_STABLE
-
This is transform 2 of https://gist.github.com/timhunt/7342412
TRANSFORM 2 - eliminate mdl_quiz.questions & rename question_instances -> slots
|
|
mdl_quiz
|
id SEQUENCE
|
...
|
questionsperpage INT(10)
|
navmethod CHAR(16) 'free' or 'seq'
|
shufflequestions BOOL
|
-
|
...
|
|
*mdl_quiz_slots
|
id SEQUENCE
|
quizid INT(10) FK
|
+ slot INT(10) Similar to question_attempt.slot
|
+ page INT(10) All slots on a page must have consecutive numbers. Page numbers must be increasing.
|
questionid INT(10) FK
|
maxmark NUMBER(12.7)
|