Suggestion comments
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.