Skip to content

Commit 53fa5c4

Browse files
docs: rename timestamp to created
1 parent c81f50c commit 53fa5c4

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

docs/decisions/0022-competency-criteria-model.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -181,21 +181,21 @@ Decision
181181
2. `competency_criteria_id`: Foreign key to `CompetencyCriterion.id`
182182
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
183183
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.
185185
2. Add a new database table for `student_competencycriteriagroupstatus` with these columns:
186186

187187
1. `id`: unique primary key
188188
2. `competency_criteria_group_id`: Foreign key to `CompetencyCriteriaGroup.id`
189189
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
190190
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.
192192
3. Add a new database table for `student_competencystatus` with these columns:
193193

194194
1. `id`: unique primary key
195195
2. `oel_tagging_tag_id`: Foreign key pointing to Tag id
196196
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
197197
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.
199199

200200
7. Delete protection boundaries
201201

-378 Bytes
Loading

0 commit comments

Comments
 (0)