socialforge/app/models/exercise_choice.rb

9 lines
272 B
Ruby
Raw Normal View History

class ExerciseChoice < ActiveRecord::Base
include Redmine::SafeAttributes
2018-03-23 15:54:50 +08:00
default_scope :order => 'choice_position'
belongs_to :exercise_question
has_many :exercise_answers, :dependent => :destroy
has_many :exercise_standard_answers, :dependent => :destroy
end