method

current_config

rails latest stable - Class: ActiveRecord::Tasks::DatabaseTasks

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v6.1.7.7) is shown here.

current_config(options = {})
public

No documentation available.

# File activerecord/lib/active_record/tasks/database_tasks.rb, line 119
      def current_config(options = {})
        if options.has_key?(:config)
          @current_config = options[:config]
        else
          env_name = options[:env] || env
          name = options[:spec] || "primary"

          @current_config ||= ActiveRecord::Base.configurations.configs_for(env_name: env_name, name: name)&.configuration_hash
        end
      end