module Base::LeafNoteSchool
  extend ActiveSupport::Concern

  included do
    self.table_name = 'SystemLeafNoteSchools'
    self.primary_key = 'SLNSID'

    alias_attribute :id, :SLNSID
    alias_attribute :note_id, :SLNID
    alias_attribute :school_id, :SchoolID
  end
end
