Sha256: d8316cd66ee62bae842133cccc2c5646a2cdcff53b84ce9e415b8c294f559770
Contents?: true
Size: 250 Bytes
Versions: 10
Compression:
Stored size: 250 Bytes
Contents
module Gaku class ExamSession < ActiveRecord::Base belongs_to :exam has_many :student_exam_sessions has_many :students, through: :student_exam_sessions validates :exam_id, presence: true def to_s name end end end
Version data entries
10 entries across 10 versions & 2 rubygems