mentions
| Column Name | Type | Comment | Default | Null | Remark |
|---|---|---|---|---|---|
| id | bigint UNSIGNED | Primary Key ID | NO | Auto Increment | |
| user_id | bigint UNSIGNED | Initiator user ID | NO | Related field users->id | |
| mention_type | tinyint UNSIGNED | Related target type | 1 | NO | 1.User users->bio2.Group groups->description3.Hashtag hashtags->description4.Post posts->content5.Comment comments->content |
| mention_id | bigint UNSIGNED | Related target primary key ID | NO | 1.Related field users->id2.Related field groups->id3.Related field hashtags->id4.Related field posts->id5.Related field comments->id | |
| mention_user_id | bigint UNSIGNED | Mentioned user ID | NO | Related field users->id | |
| created_at | timestamp | Create Time | CURRENT_TIMESTAMP | NO | |
| updated_at | timestamp | Update Time | YES | ||
| deleted_at | timestamp | Delete Time | YES |