Module: DataMapped::Join

Defined in:
lib/data_mapped/join.rb

Class Method Summary collapse

Class Method Details

.included(other) ⇒ Object



16
17
18
19
20
21
22
# File 'lib/data_mapped/join.rb', line 16

def self.included(other)
  other.class_eval do
    include DataMapper::Resource
    property :created_at, DataMapper::Property::DateTime
    property :updated_at, DataMapper::Property::DateTime
  end
end