Genshin/GAKUEngine

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

Summary

Maintainability
A
0 mins
Test Coverage
module Gaku
  class Faculty < ActiveRecord::Base
    include Contacts
    include Addresses

    has_many :school_roles, as: :school_rolable
    has_many :students
    has_many :class_groups
    has_many :courses
  end
end