We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40398d5 commit 65a798aCopy full SHA for 65a798a
lib/TestResultTable.php
@@ -31,10 +31,22 @@ public static function getMap()
31
'data_type' => 'integer',
32
'required' => true,
33
),
34
+ 'ATTEMPT' => new Entity\ReferenceField(
35
+ 'ATTEMPT',
36
+ '\Learning\AttemptTable',
37
+ array('=this.ATTEMPT_ID' => 'ref.ID'),
38
+ array('join_type' => 'LEFT')
39
+ ),
40
'QUESTION_ID' => array(
41
42
43
44
+ 'QUESTION' => new Entity\ReferenceField(
45
+ 'QUESTION',
46
+ '\Learning\QuestionTable',
47
+ array('=this.QUESTION_ID' => 'ref.ID'),
48
49
50
'RESPONSE' => array(
51
'data_type' => 'text',
52
0 commit comments