Module Sequel::Plugins::UpdateRefresh::ClassMethods
In: lib/sequel/plugins/update_refresh.rb

Methods

freeze  

Attributes

update_refresh_columns  [R]  The specific columns to refresh when updating, if UPDATE RETURNING is supported.

Public Instance methods

Freeze the update refresh columns when freezing the model class.

[Source]

    # File lib/sequel/plugins/update_refresh.rb, line 51
51:         def freeze
52:           @update_refresh_columns.freeze
53: 
54:           super
55:         end

[Validate]