Genshin/GAKUEngine

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

Summary

Maintainability
A
0 mins
Test Coverage
module Gaku
  class ProgramSyllabus < ActiveRecord::Base
    belongs_to :program
    belongs_to :syllabus
    belongs_to :level

    validates :syllabus, presence: true
  end
end