educoder/app/models/exercise_bank_standard_answ...

6 lines
240 B

6 years ago
class ExerciseBankStandardAnswer < ApplicationRecord
belongs_to :exercise_bank_question
belongs_to :exercise_bank_choice
#attr_accessible :answer_text
6 years ago
scope :standard_by_ids, lambda { |s| where(exercise_bank_choice_id: s) }
6 years ago
end