module Base::ParentTeacherConfig
  extend ActiveSupport::Concern

  included do
    self.table_name = 'PTConfConfig'
    self.primary_key = 'PTCCID'

    alias_attribute :id, :PTCCID
    alias_attribute :school_id, :SchoolID
    alias_attribute :active, :Active
    # alias_attribute :label, :Label
    alias_attribute :homeroom_only, :HROnly
  end
end
