module Base::StudentCategoryGroup
  extend ActiveSupport::Concern

  included do
    self.table_name = 'StudentCategoryGroups'
    self.primary_key = 'SCGID'

    alias_attribute :id, :SCGID
    alias_attribute :school_id, :SchoolID
    alias_attribute :description, :Description
    alias_attribute :name, :Name
  end
end
