module Sequel::Plugins::Timestamps::ClassMethods
def create_timestamp_overwrite?
def create_timestamp_overwrite? @create_timestamp_overwrite end
def inherited(subclass)
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
def set_update_timestamp_on_create?
def set_update_timestamp_on_create? @set_update_timestamp_on_create end