-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprogramming_assignments.html
More file actions
94 lines (74 loc) · 2.61 KB
/
programming_assignments.html
File metadata and controls
94 lines (74 loc) · 2.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<head>
<style>
div {
font-family: monospace;
}
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
tr:nth-child(odd) {
background-color: #FFFFFF;
}
tr:nth-child(even) {
background-color: #EBF2F2;
}
th, td {
text-align: left;
padding: 5px 10px 5px 5px;
}
</style>
</head>
<div>
<h1>programming_assignments</h1>
<h2>Description</h2>
<p>
Information of programming assignments
</p>
<h2> Columns </h2>
<table>
<tr><th>Name</th><th>Description</th></tr>
<tr>
<td>programming_assignment_id</td><td>This is a 'course_content_id', and is versioned. (e.g ABC@1 is version 1)</td>
</tr>
<tr>
<td>programming_assignment_base_id</td><td>None versioned id</td>
</tr>
<tr>
<td>programming_assignment_type</td><td>The type ("standard", "graded", "closed").</td>
</tr>
<tr>
<td>programming_assignment_submission_type</td><td>The type ("mulitpart")</td>
</tr>
<tr>
<td>programming_assignment_instruction_text</td><td>The CML Instruction content</td>
</tr>
<tr>
<td>programming_assignment_passing_fraction</td><td>Fraction of the maximum possible score that you must achieve in order to pass. This only exists for assignments that generate scores.</td>
</tr>
<tr>
<td>programming_assignment_submission_builder_schema_type</td><td>No column description available</td>
</tr>
<tr>
<td>programming_assignment_submission_builder_schema</td><td>No column description available</td>
</tr>
<tr>
<td>programming_assignment_update_ts</td><td>When this version of the assignment was created.</td>
</tr>
</table>
<h2>SQL create statement</h2>
<pre>
CREATE TABLE programming_assignments (
programming_assignment_id VARCHAR(50)
,programming_assignment_base_id VARCHAR(50)
,programming_assignment_type VARCHAR(50)
,programming_assignment_submission_type VARCHAR(50)
,programming_assignment_instruction_text VARCHAR(65535)
,programming_assignment_passing_fraction FLOAT8
,programming_assignment_submission_builder_schema_type VARCHAR(50)
,programming_assignment_submission_builder_schema VARCHAR(65535)
,programming_assignment_update_ts TIMESTAMP
,PRIMARY KEY (programming_assignment_id)
);
</pre>
</div>