module Base::EmployeeAdditionalGroup
  extend ActiveSupport::Concern

  included do
    self.table_name = 'UserStatisticGroups'
    self.primary_key = 'USGID'

    alias_attribute :id, :USGID
    alias_attribute :school_id, :SchoolID
    alias_attribute :name, :Name
    alias_attribute :description, :Description
    alias_attribute :order, :Sequence
  end
end
