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 39
39:         def call(_)
40:           v = super
41:           v.calculate_values_hashes
42:           v
43:         end

[Validate]