Flowdock
method

each_current_configuration

Importance_0
v5.1.7 - Show latest stable - 0 notes - Class: DatabaseTasks
each_current_configuration(environment) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/tasks/database_tasks.rb, line 298
        def each_current_configuration(environment)
          environments = [environment]
          environments << "test" if environment == "development"

          ActiveRecord::Base.configurations.slice(*environments).each do |configuration_environment, configuration|
            next unless configuration["database"]

            yield configuration, configuration_environment
          end
        end
Register or log in to add new notes.