You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 29, 2024. It is now read-only.
Not sure what happened, but apparently a bunch of the data that makes the data human-readable had been lost in all the merges at mid-summer. Oy.
Signed-off-by: Seth Battis <[email protected]>
`timestamp`textNOT NULL COMMENT 'When this statistic was collected',
36
29
`course[id]`int(11) NOT NULL COMMENT 'Canvas course ID',
37
30
`course[name]`textNOT NULL COMMENT 'Human-readable course name, as listed in Canvas',
38
31
`course[account_id]`int(11) NOT NULL COMMENT 'The account_id associated with this course (i.e. the department) for departmental aggregation of data.',
39
32
`account[name]`textNOT NULL COMMENT 'Human-readable department name',
40
33
`teacher[id]s`textNOT NULL COMMENT 'A serialized array of Canvas user IDs for the teacher(s) of the course.',
41
-
`teacher[sortable_name]s`int(11)NOT NULL COMMENT 'Serialized list of human-readable teacher names',
34
+
`teacher[sortable_name]s`textNOT NULL COMMENT 'Serialized list of human-readable teacher names',
42
35
`assignments_due_count`int(11) NOT NULL COMMENT 'The overall number of assignments with due dates prior to the timestamp, including both graded and ungraded assignments and zero-point assignments.',
43
36
`dateless_assignment_count`int(11) NOT NULL COMMENT 'Assignments that lack due dates.',
44
37
`gradeable_assignment_count`int(11) NOT NULL COMMENT 'The number of gradeable, non-zero-point, assignments posted in this course with due dates prior to this statistic collection timestamp',
@@ -52,8 +45,14 @@ CREATE TABLE IF NOT EXISTS `course_statistics` (
52
45
`gradebook_url`textNOT NULL COMMENT 'URL of the course gradebook',
53
46
`student_count`int(11) NOT NULL COMMENT 'The number of student enrollments in this course. (Not yet filtering out the Test Student enrollments.)',
0 commit comments