Module Sequel::Plugins::ModificationDetection::ClassMethods
In: lib/sequel/plugins/modification_detection.rb

Methods

call  

Public Instance methods

Calculate the hashes for all of the column values, so that they can be compared later to determine if the column value has changed.

[Source]

    # File lib/sequel/plugins/modification_detection.rb, line 36
36:         def call(_)
37:           v = super
38:           v.calculate_values_hashes
39:           v
40:         end

[Validate]