Module: Sequel::Plugins::Timestamps::InstanceMethods

Defined in:
lib/sequel/plugins/timestamps.rb

Instance Method Summary collapse

Instance Method Details

#before_createObject

Set the create timestamp when creating



66
67
68
69
# File 'lib/sequel/plugins/timestamps.rb', line 66

def before_create
  set_create_timestamp
  super
end

#before_updateObject

Set the update timestamp when updating



72
73
74
75
# File 'lib/sequel/plugins/timestamps.rb', line 72

def before_update
  set_update_timestamp
  super
end