Method: Mongo::Model::Misc::ClassMethods#timestamps!

Defined in:
lib/mongo/model/misc.rb

#timestamps!Object



42
43
44
45
46
# File 'lib/mongo/model/misc.rb', line 42

def timestamps!
  attr_accessor :created_at, :updated_at
  before_create :update_created_at
  before_save :update_updated_at
end