module Base::Service::Group
  extend ActiveSupport::Concern

  included do
    self.table_name = 'ServiceOpGroups'
    self.primary_key = 'SOGID'

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