class QuestionSection < ApplicationRecord
  belongs_to :interview_question
  belongs_to :master_section

  validates :master_section_id, uniqueness: { scope: :interview_question_id }
end
