module Sequel::Plugins::Timestamps::ClassMethods
Attributes
create_timestamp_field[R]
The field to store the create timestamp
update_timestamp_field[R]
The field to store the update timestamp
Public Instance Methods
allow_manual_timestamp_update?()
click to toggle source
Whether to allow manual setting of the update timestamp when creating
# File lib/sequel/plugins/timestamps.rb, line 63 def allow_manual_timestamp_update? @allow_manual_timestamp_update end
create_timestamp_overwrite?()
click to toggle source
Whether to overwrite the create timestamp if it already exists
# File lib/sequel/plugins/timestamps.rb, line 50 def create_timestamp_overwrite? @create_timestamp_overwrite end
set_update_timestamp_on_create?()
click to toggle source
Whether to set the update timestamp to the create timestamp when creating
# File lib/sequel/plugins/timestamps.rb, line 68 def set_update_timestamp_on_create? @set_update_timestamp_on_create end