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
Copy file name to clipboardExpand all lines: docs/decisions/0022-competency-criteria-model.rst
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -181,21 +181,21 @@ Decision
181
181
2. `competency_criteria_id`: Foreign key to `CompetencyCriterion.id`
182
182
3. `user_id`: Foreign key pointing to user_id (presumably the learner's id, although it appears that it is possible for staff to get grades as well) in `auth_user` table
183
183
4. `status`: Enumeration of “Demonstrated”, “AttemptedNotDemonstrated”, and “PartiallyAttempted”. This field should be very small and not varchar(100) as it will be part of an index.
184
-
5. `timestamp`: The timestamp at which the student's criterion status was set.
184
+
5. `created`: The timestamp at which the student's criterion status was set.
185
185
2. Add a new database table for `student_competencycriteriagroupstatus` with these columns:
186
186
187
187
1. `id`: unique primary key
188
188
2. `competency_criteria_group_id`: Foreign key to `CompetencyCriteriaGroup.id`
189
189
3. `user_id`: Foreign key pointing to user_id (presumably the learner's id, although it appears that it is possible for staff to get grades as well) in `auth_user` table
190
190
4. `status`: Enumeration of “Demonstrated”, “AttemptedNotDemonstrated”, and “PartiallyAttempted”. This field should be very small and not varchar(100) as it will be part of an index.
191
-
5. `timestamp`: The timestamp at which the student's criteria-group status was set.
191
+
5. `created`: The timestamp at which the student's criteria-group status was set.
192
192
3. Add a new database table for `student_competencystatus` with these columns:
193
193
194
194
1. `id`: unique primary key
195
195
2. `oel_tagging_tag_id`: Foreign key pointing to Tag id
196
196
3. `user_id`: Foreign key pointing to user_id (presumably the learner's id, although it appears that it is possible for staff to get grades as well) in `auth_user` table
197
197
4. `status`: Enumeration of “Demonstrated” and “PartiallyAttempted”. This field should be very small and not varchar(100) as it will be part of an index.
198
-
5. `timestamp`: The timestamp at which the student's competency status was set.
198
+
5. `created`: The timestamp at which the student's competency status was set.
0 commit comments