module Rails::Configuration::Deprecated

def database_configuration_file=(value)

def database_configuration_file=(value)
  ActiveSupport::Deprecation.warn "config.database_configuration_file= is deprecated, " <<
    "please do paths.config.database= instead", caller
  paths.config.database = value
end