Invitations: Difference between revisions

From Expertiza_Wiki
Jump to navigation Jump to search
(Created page with "{| class="wikitable" !Field Name !!Type !!Description |- !id |int(11) | |- !assignment_id |int(11) |used to identify the assignment |- !from_id |int(11) |The ...")
 
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 8: Line 8:
!assignment_id   
!assignment_id   
|int(11)   
|int(11)   
|used to identify the assignment
|The id of the assignment
|-  
|-  
!from_id   
!from_id   
|int(11)   
|int(11)   
|The mail id of the person inviting
|The user id of the person inviting
|-  
|-  
!to_id   
!to_id   
|int(11)   
|int(11)   
|The mail id of the person who is invited
|The user id of the person who is invited
|-  
|-  
!reply_status   
!reply_status   
|char(1)
|char(1)
    
    
|The status of the reply--whether replied to or not
|W = waiting for reply; A = accepted; D = declined
|}  
|}  




Back to [http://wiki.expertiza.ncsu.edu/index.php/Documentation_on_Database_Tables Database Tables] Main page.
Back to [http://wiki.expertiza.ncsu.edu/index.php/Documentation_on_Database_Tables Database Tables] Main page.

Latest revision as of 03:51, 2 October 2024

Field Name Type Description
id int(11)
assignment_id int(11) The id of the assignment
from_id int(11) The user id of the person inviting
to_id int(11) The user id of the person who is invited
reply_status char(1) W = waiting for reply; A = accepted; D = declined


Back to Database Tables Main page.