method

dump_filename

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.

dump_filename(db_config_name, format = ActiveRecord::Base.schema_format)
public

No documentation available.

# File activerecord/lib/active_record/tasks/database_tasks.rb, line 413
      def dump_filename(db_config_name, format = ActiveRecord::Base.schema_format)
        filename = if ActiveRecord::Base.configurations.primary?(db_config_name)
          schema_file_type(format)
        else
          "#{db_config_name}_#{schema_file_type(format)}"
        end

        ENV["SCHEMA"] || File.join(ActiveRecord::Tasks::DatabaseTasks.db_dir, filename)
      end