mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Revert "Remove connection method definition, since it's called just once."
Restore the connection method which was added so it can be overridden.
This reverts commit e428c75d2b
.
This commit is contained in:
parent
3022ce4f72
commit
4300f94533
1 changed files with 5 additions and 1 deletions
|
@ -339,6 +339,10 @@ module ActiveRecord
|
|||
self.verbose = save
|
||||
end
|
||||
|
||||
def connection
|
||||
ActiveRecord::Base.connection
|
||||
end
|
||||
|
||||
def method_missing(method, *arguments, &block)
|
||||
arg_list = arguments.map(&:inspect) * ', '
|
||||
|
||||
|
@ -346,7 +350,7 @@ module ActiveRecord
|
|||
unless arguments.empty? || method == :execute
|
||||
arguments[0] = Migrator.proper_table_name(arguments.first)
|
||||
end
|
||||
Base.connection.send(method, *arguments, &block)
|
||||
connection.send(method, *arguments, &block)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue