module Base::LeafNoteUser
  extend ActiveSupport::Concern

  included do
    self.table_name = 'SystemLeafNoteUsers'
    self.primary_key = 'SLNUID'

    alias_attribute :id, :SLNUID
    alias_attribute :school_id, :SchoolID
    alias_attribute :date, :DateTime
    alias_attribute :user_id, :UserID
    alias_attribute :note_id, :SLNID
  end
end
