Tag prompt deployments: Difference between revisions

From Expertiza_Wiki
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 |- !tag_prompt_id |int(11) |ID of the ...")
 
No edit summary
 
Line 24: Line 24:
!answer_length_threshold
!answer_length_threshold
|int(11)  
|int(11)  
|Maximumm length of answer expected
|Maximumm length of answer expected (no, Ed thinks it is supposed to be a length such that comments shorter than that length will not be tagged)
|-  
|-  
!created_at
!created_at

Latest revision as of 14:25, 1 April 2021

Name Datatype Description
id int(11) Primary key of the entry in table, auto increments by default
tag_prompt_id int(11) ID of the tag prompt
assignment_id int(11) ID of the assignment for which a tag is created
questionnaire_id int(11) ID of the questionaire for which tag is created
question_type varchar(255) type of question, depends on whether the based on the format of answer that it expects
answer_length_threshold int(11) Maximumm length of answer expected (no, Ed thinks it is supposed to be a length such that comments shorter than that length will not be tagged)
created_at datetime Time of creation of row
updated_at datetime Time of updation of row

E/R diagram of tables referencing tag_prompt_deployments table

The following image shows the tables referencing users table

E/R diagram of tables users table is referencing to

The following image shows the tables that tag_prompt_deployments table is referenced by:


Back to Database Tables Main page.