help_log
Purpose: Tracks page accesses in the staff and student help systems.
Joins: users, staff_help, student_help tables.
Field | Type | Purpose |
---|---|---|
id | int(11) | Primary Key – auto increment. |
type | enum('student','staff') | Type of user performing the search (i.e. student or staff). |
userID | int(10) unsigned | ID of the user who performed the search |
accessed | datetime | Datetime when the page was hit |
pageID | int(11) | ID of the page that was accessed. |