Bookmark ratings: Difference between revisions
Jump to navigation
Jump to search
| Line 1: | Line 1: | ||
The Bookmark Ratings table gives information regarding the ratings provided to each of these bookmarks. | The Bookmark Ratings table gives information regarding the ratings provided to each of these bookmarks. | ||
== Bookmark Ratings Variable Documentation == | == Bookmark Ratings Variable Documentation (Reimplementation) == | ||
{| class="wikitable" | {| class="wikitable" | ||
!Field Name !!Type !! | !Field Name !!Type !!Description | ||
|- | |- | ||
! | !id | ||
|int(11) | |int(11) | ||
|Unique ID for each bookmark_ratings record. | |Unique ID for each bookmark_ratings record. | ||
|- | |- | ||
! | !artifact_id | ||
|int(11) | |int(11) | ||
|ID of the Bookmark. | |ID of the Bookmark. | ||
|- | |- | ||
! | !rater_id | ||
|int(11) | |int(11) | ||
|User ID who rated the | |User ID who rated the particular Bookmark. | ||
|- | |- | ||
! | !ratings | ||
|int(11) | |int(11) | ||
|Rating provided to that bookmark. | |Rating provided to that bookmark. | ||
|- | |- | ||
! | !created_at | ||
| | |datetime | ||
|Date time value when the record was created. | |Date time value when the record was created. | ||
|- | |- | ||
! | !updated_at | ||
| | |datetime | ||
|Date time value when the record was updated. | |||
|} | |||
== Bookmark Ratings Variable Documentation (2023 version) == | |||
{| class="wikitable" | |||
!Field Name !!Type !!Description | |||
|- | |||
!id | |||
|int(11) | |||
|Unique ID for each bookmark_ratings record. | |||
|- | |||
!bookmark_id | |||
|int(11) | |||
|ID of the Bookmark. | |||
|- | |||
!user_id | |||
|int(11) | |||
|User ID who rated the particular Bookmark. | |||
|- | |||
!rating | |||
|int(11) | |||
|Rating provided to that bookmark. | |||
|- | |||
!created_at | |||
|datetime | |||
|Date time value when the record was created. | |||
|- | |||
!updated_at | |||
|datetime | |||
|Date time value when the record was updated. | |Date time value when the record was updated. | ||
|} | |} | ||
Latest revision as of 03:13, 9 December 2025
The Bookmark Ratings table gives information regarding the ratings provided to each of these bookmarks.
Bookmark Ratings Variable Documentation (Reimplementation)
| Field Name | Type | Description |
|---|---|---|
| id | int(11) | Unique ID for each bookmark_ratings record. |
| artifact_id | int(11) | ID of the Bookmark. |
| rater_id | int(11) | User ID who rated the particular Bookmark. |
| ratings | int(11) | Rating provided to that bookmark. |
| created_at | datetime | Date time value when the record was created. |
| updated_at | datetime | Date time value when the record was updated. |
Bookmark Ratings Variable Documentation (2023 version)
| Field Name | Type | Description |
|---|---|---|
| id | int(11) | Unique ID for each bookmark_ratings record. |
| bookmark_id | int(11) | ID of the Bookmark. |
| user_id | int(11) | User ID who rated the particular Bookmark. |
| rating | int(11) | Rating provided to that bookmark. |
| created_at | datetime | Date time value when the record was created. |
| updated_at | datetime | Date time value when the record was updated. |
E/R diagram for Parents Tables
No Tables were referred by the Bookmark_ratings Table as Foreign Key Relationship.
E/R diagram for Child Tables
No Tables were referred by the Bookmark_ratings Table as Foreign Key Relationship.
Back to Database Tables Main page.