diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2013-03-14 17:23:55 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2013-03-14 17:23:55 -0700 |
commit | 772c18e02811aa988a74bc4a9e999f153f1d8ad0 (patch) | |
tree | 0c229064d0aaa3bd9d29b5f6855091c2ae5b7a81 | |
parent | d5f4b5382afc04eb760be02c87db61d907f0ea1b (diff) | |
download | rails-772c18e02811aa988a74bc4a9e999f153f1d8ad0.tar.gz rails-772c18e02811aa988a74bc4a9e999f153f1d8ad0.tar.bz2 rails-772c18e02811aa988a74bc4a9e999f153f1d8ad0.zip |
use the method so we do not depend on internal ivars
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb b/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb index a7c7124122..d3abc88fd5 100644 --- a/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb +++ b/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb @@ -291,7 +291,7 @@ module ActiveRecord # concatenated together. This string can then be prepended and appended to # to generate the final SQL to create the table. def to_sql - @columns.map { |c| c.to_sql } * ', ' + columns.map { |c| c.to_sql } * ', ' end private |