mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Migrations: make default database connection overridable
This commit is contained in:
parent
922c528d42
commit
6f8ed1cd3f
1 changed files with 5 additions and 1 deletions
|
@ -338,6 +338,10 @@ module ActiveRecord
|
|||
self.verbose = save
|
||||
end
|
||||
|
||||
def connection
|
||||
ActiveRecord::Base.connection
|
||||
end
|
||||
|
||||
def method_missing(method, *arguments, &block)
|
||||
arg_list = arguments.map(&:inspect) * ', '
|
||||
|
||||
|
@ -345,7 +349,7 @@ module ActiveRecord
|
|||
unless arguments.empty? || method == :execute
|
||||
arguments[0] = Migrator.proper_table_name(arguments.first)
|
||||
end
|
||||
ActiveRecord::Base.connection.send(method, *arguments, &block)
|
||||
connection.send(method, *arguments, &block)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue