Columns
| Column | Type | Size | Nulls | Auto | Default | Children | Parents | Comments |
|---|---|---|---|---|---|---|---|---|
| Id | int identity | 4 | √ | null |
|
|
Primary key - Unique identifier for each read record, auto-incrementing integer |
|
| ArticleId | int | 4 | null |
|
|
Article reference - Foreign key linking to Article.ID for the article that was read (required field) |
||
| UserId | int | 4 | null |
|
|
Reader user ID - Reference to user who read the article (required field) |
Indexes
| Constraint Name | Type | Sort | Column(s) |
|---|---|---|---|
| PK_UserReadArticle | Primary key | Asc | Id |