Survey responses: Difference between revisions
		
		
		
		Jump to navigation
		Jump to search
		
|  (Created page with "{| class="wikitable"  !Name !!Datatype !!Description |-  !id   |int(11)   |Primary key of the entry in table, auto increments by default  |-  !score |bigint(20) |Stores the score...") | 
| (No difference) | 
Latest revision as of 23:59, 24 April 2018
| Name | Datatype | Description | 
|---|---|---|
| id | int(11) | Primary key of the entry in table, auto increments by default | 
| score | bigint(20) | Stores the score of survey responses | 
| comments | text | Comments of the survey responses | 
| assignment_id | bigint(20) | The assignment id for which survey response is stored | 
| question_id | bigint(20) | The question id of survey response | 
| survey_id | bigint(20) | Survey ID of the response | 
| varchar(255) | Stores the email of the user who filled the survey | |
| survey_deployment_id | int(11) | Stores the survey deployment ID | 
E/R diagram of tables referencing survey_responses table
This table is not referred by any other table in the database
E/R diagram of tables survey_responses table is referencing to
The survey_responses table is not referenced by any other tables
Back to Database Tables Main page.