mirror of
https://github.com/github/rails.git
synced 2026-01-29 16:28:09 -05:00
Fixed that Migration#execute would have the table name prefix appended to its query (closes #4110) [mark.imbriaco@pobox.com]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3909 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
*SVN*
|
||||
|
||||
* Fixed that Migration#execute would have the table name prefix appended to its query #4110 [mark.imbriaco@pobox.com]
|
||||
|
||||
* Make all tinyint(1) variants act like boolean in mysql (tinyint(1) unsigned, etc.) [Jamis Buck]
|
||||
|
||||
* Use association's :conditions when eager loading. [jeremyevans0@gmail.com] #4144
|
||||
|
||||
@@ -266,7 +266,7 @@ module ActiveRecord
|
||||
|
||||
def method_missing(method, *arguments, &block)
|
||||
say_with_time "#{method}(#{arguments.map { |a| a.inspect }.join(", ")})" do
|
||||
arguments[0] = Migrator.proper_table_name(arguments.first) unless arguments.empty?
|
||||
arguments[0] = Migrator.proper_table_name(arguments.first) unless arguments.empty? || method == :execute
|
||||
ActiveRecord::Base.connection.send(method, *arguments, &block)
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user