Methods
Public Instance
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?()
Whether to allow manual setting of the update timestamp when creating
[show source]
# File lib/sequel/plugins/timestamps.rb 62 def allow_manual_timestamp_update? 63 @allow_manual_timestamp_update 64 end
create_timestamp_overwrite?()
Whether to overwrite the create timestamp if it already exists
[show source]
# File lib/sequel/plugins/timestamps.rb 50 def create_timestamp_overwrite? 51 @create_timestamp_overwrite 52 end
set_update_timestamp_on_create?()
Whether to set the update timestamp to the create timestamp when creating
[show source]
# File lib/sequel/plugins/timestamps.rb 67 def set_update_timestamp_on_create? 68 @set_update_timestamp_on_create 69 end