Genshin/GAKUEngine

View on GitHub
core/app/models/gaku/exam_schedule.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Gaku
  class ExamSchedule < ActiveRecord::Base
    belongs_to :exam_portion
    belongs_to :schedule
    belongs_to :course

    validates :exam_portion, :schedule, :course, presence: true
  end
end