instance method
fixed?
Ruby on Rails edge
Since v7.0.10Signature
fixed?()
No documentation comment.
Source
# File activerecord/lib/active_record/encryption/scheme.rb, line 60
def fixed?
return @fixed if defined?(@fixed)
# by default deterministic encryption is fixed
@fixed = @deterministic && (!@deterministic.is_a?(Hash) || @deterministic[:fixed])
end
Defined in activerecord/lib/active_record/encryption/scheme.rb line 60
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::Encryption::Scheme