module DataMapped::Join
Public Class Methods
included(other)
click to toggle source
# 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