aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
authorEmilio Tagua <miloops@gmail.com>2009-08-18 19:53:21 -0300
committerEmilio Tagua <miloops@gmail.com>2009-08-18 19:53:21 -0300
commita7178773d2f57454b55b20577091c00327565b67 (patch)
tree41982771064dd20f6a35f8f16d87b0146e499f37 /activerecord/lib
parentd5476b466f086921c71cb1caf6b9773cbdb5b4e3 (diff)
downloadrails-a7178773d2f57454b55b20577091c00327565b67.tar.gz
rails-a7178773d2f57454b55b20577091c00327565b67.tar.bz2
rails-a7178773d2f57454b55b20577091c00327565b67.zip
Remove now unused quote_table_name, ARel does that quoting now.
Diffstat (limited to 'activerecord/lib')
-rwxr-xr-xactiverecord/lib/active_record/base.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb
index 4636a8b338..1698f33da0 100755
--- a/activerecord/lib/active_record/base.rb
+++ b/activerecord/lib/active_record/base.rb
@@ -3103,13 +3103,6 @@ module ActiveRecord #:nodoc:
hash.inject([]) { |list, pair| list << "#{pair.first} = #{pair.last}" }.join(", ")
end
- def quoted_column_names(attributes = attributes_with_quotes)
- connection = self.class.connection
- attributes.keys.collect do |column_name|
- connection.quote_column_name(column_name)
- end
- end
-
def self.quoted_table_name
self.connection.quote_table_name(self.table_name)
end