method

global_previous_schemes_for

global_previous_schemes_for(scheme)
public

No documentation available.

# File activerecord/lib/active_record/encryption/encryptable_record.rb, line 78
          def global_previous_schemes_for(scheme)
            ActiveRecord::Encryption.config.previous_schemes.filter_map do |previous_scheme|
              scheme.merge(previous_scheme) if scheme.compatible_with?(previous_scheme)
            end
          end