Suggestion comments: 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  |-  !comments |text  |Stores the comment...") | 
| (No difference) | 
Latest revision as of 00:28, 25 April 2018
| Name | Datatype | Description | 
|---|---|---|
| id | int(11) | Primary key of the entry in table, auto increments by default | 
| comments | text | Stores the comments for the suggestion | 
| commenter | varchar(255) | Stores the username of the commenter | 
| vote | varchar(255) | Stores the vote(Y/N/R/NULL) for the comment on the suggestion | 
| suggestion_id | int(11) | Stores the suggestion ID | 
| created_at | datetime | Stores the time at which the row is created | 
E/R diagram of tables referencing suggestion_comments table
The following table doesn't reference to other tables in the database
E/R diagram of tables suggestion_comments table is referencing to
The suggestion_comments table is not referenced by any other tables
Back to Database Tables Main page.