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 34 34: def call(_) 35: v = super 36: v.calculate_values_hashes 37: v 38: end
[Validate]