aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/schema.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2006-02-21 00:00:29 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2006-02-21 00:00:29 +0000
commit7a2ce50a9386a46387c114945354ba89c5fc9c30 (patch)
tree185cac50236c584974d02828054b9693f0b5b2b5 /activerecord/lib/active_record/schema.rb
parente875b0db4714a86798a8248e91bea3fb7ffefe52 (diff)
downloadrails-7a2ce50a9386a46387c114945354ba89c5fc9c30.tar.gz
rails-7a2ce50a9386a46387c114945354ba89c5fc9c30.tar.bz2
rails-7a2ce50a9386a46387c114945354ba89c5fc9c30.zip
Improved the Oracle OCI Adapter with better performance for column reflection (from #3210), fixes to migrations (from #3476 and #3742), tweaks to unit tests (from #3610), and improved documentation (from #2446) (closes #3879) [Aggregated by schoenm@earthlink.net]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3623 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/lib/active_record/schema.rb')
-rw-r--r--activerecord/lib/active_record/schema.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/schema.rb b/activerecord/lib/active_record/schema.rb
index c986380853..6e0579b586 100644
--- a/activerecord/lib/active_record/schema.rb
+++ b/activerecord/lib/active_record/schema.rb
@@ -51,7 +51,7 @@ module ActiveRecord
"#{k} = #{v}"
end
- update "UPDATE schema_info SET #{info.join(", ")}"
+ update "UPDATE #{Migrator.schema_info_table_name} SET #{info.join(", ")}"
end
end
end