Assignment questionnaires

From Expertiza_Wiki
Revision as of 14:34, 17 May 2016 by Rkyadav (talk | contribs) (Created page with "The assignment_questionnaires table defines the joins between a questionnaire and an assignment. It is also used to associate default limits fo...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

The assignment_questionnaires table defines the joins between a questionnaire and an assignment. It is also used to associate default limits for the notifications an instructor receives.

Assignment Questionnaires variable documentation

Field Name Type Description
id int(11) The unique record id
assignment_id int(11) The ID of the assignment in this relationship. A null value is used to define the default limits
questionnaire_id int(11) The ID of the questionnaire in this relationship. A null value is used to define the default limits
user_id int(11) The ID of the instructor who created the relationship
notification_limit int(11) A percent difference between an awarded score and the current average score as an integer. This defines at which point the instructor receives a notification that a response falls outside the acceptable range
questionnaire_weight int(11) A percentage that the questionnaire contributes to the overall score. When both assignment_id and questionnaire_id are null, this relationship defines the defaults set by the instructor.

Back to the database documentation