help_tutorial_log
Purpose: Holds a log of which users accessed the online tutorials in the help system.
Joins: users table.
Field | Type | Purpose |
---|---|---|
id | int(11) | Primary Key – auto increment. |
type | enum('student','staff') | What type of user accessed the tutorial. |
userID | int(10) unsigned | User ID of the person accessing the tutorial. |
accessed | datetime | Datetime when the tutorial was accessed. |
tutorial | varchar(255) | Filename of the tutorial accessed. |