comments
댓글 데이터
| Column name | Type | Index | Description |
|---|---|---|---|
| id | bigint(20) unsigned auto_increment | Primary Key | |
| user_id | bigint(20) unsigned | Index |
Comment belongsTo(User) relation key 댓글 작성자 User id |
| commentable_id | bigint(20) unsigned | Index |
morphTo() relation key 댓글이 작성된 대상의 모델 id |
| commentable_type | varchar(255) utf8mb4_unicode_ci | Index |
morphTo() relation key 댓글이 작성된 대상의 모델 type |
| content | varchar(255) utf8mb4_unicode_ci | 댓글이 내용 | |
| created_at | timestamp nullable | ||
| updated_at | timestamp nullable |