<aside>

</aside>

Table review_responses [note: 'Bảng lưu phản hồi của giảng viên hoặc admin cho từng review']
{
  id              uuid            [pk, note: 'Khóa chính của phản hồi']
  review_id       uuid            [not null, ref: > reviews.id, note: 'Review được phản hồi']
  responder_id    uuid            [not null, ref: > users.id, note: 'Người phản hồi (instructor hoặc admin)']
  content         text            [not null, note: 'Nội dung phản hồi']
  created_at      timestamp       [default: `now()`, note: 'Thời điểm tạo phản hồi']
  updated_at      timestamp       [default: `now()`, note: 'Thời điểm cập nhật cuối']

  indexes {
    (review_id)  // dễ truy vấn tất cả phản hồi cho 1 review
  }
}

Add Review Response Command

Update Review Response Command

Archive Review Response Command

List Review Responses By Review Query

Get Review Response Detail Query