The field to store the create timestamp
The field to store the update timestamp
Whether to overwrite the create timestamp if it already exists
# File lib/sequel/plugins/timestamps.rb, line 46 def create_timestamp_overwrite? @create_timestamp_overwrite end
Copy the class instance variables used from the superclass to the subclass
# File lib/sequel/plugins/timestamps.rb, line 51 def inherited(subclass) super [:@create_timestamp_field, :@update_timestamp_field, :@create_timestamp_overwrite, :@set_update_timestamp_on_create].each do |iv| subclass.instance_variable_set(iv, instance_variable_get(iv)) end end
Whether to set the update timestamp to the create timestamp when creating
# File lib/sequel/plugins/timestamps.rb, line 59 def set_update_timestamp_on_create? @set_update_timestamp_on_create end