<aside> <img src="/icons/checklist_green.svg" alt="/icons/checklist_green.svg" width="40px" />

</aside>

Persistence Model

Table faqs [note: 'Các câu hỏi thường gặp (FAQ), global hoặc theo khóa'] 
{
  id                uuid                    [pk, note: 'Khóa chính FAQ']  
  product_id        uuid                    [ref: > products.id, note: 'Liên kết course']  
  question          text                    [not null, note: 'Câu hỏi thường gặp']  
  answer            text                    [not null, note: 'Câu trả lời chi tiết']  
  order             int                     [default: 0, note: 'Thứ tự hiển thị']  
  status            faq_status              [default: 'draft', note: 'draft/published/archived']  
  created_at        timestamp               [default: `now()`, note: 'Tạo lúc']  
  updated_at        timestamp               [default: `now()`, note: 'Cập nhật']  
  deleted_at        timestamp               [null, note: 'Soft-delete']  
}

Domain Use Cases

Add Course FAQ Command

Update Course FAQ Command

Remove Course FAQ Command

Publish Course FAQ Command

Draft Course FAQ Command

Get FAQs By Course Query