You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
educoder/app/models/examination_item.rb

11 lines
364 B

5 years ago
class ExaminationItem < ApplicationRecord
5 years ago
enum item_type: { SINGLE: 0, MULTIPLE: 1, JUDGMENT: 2, COMPLETION: 3, SUBJECTIVE: 4, PRACTICAL: 5, PROGRAM: 6 }
5 years ago
belongs_to :examination_bank, touch: true
belongs_to :item_bank, optional: true
has_many :examination_item_choices, dependent: :destroy
5 years ago
belongs_to :container, polymorphic: true, optional: true
5 years ago
end