aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/schema
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2012-11-15 13:42:35 -0800
committerAaron Patterson <aaron.patterson@gmail.com>2012-11-15 13:42:50 -0800
commit0803d7a93b4a67340719eedddcc1746414fc2405 (patch)
tree3f14182040d437c5ed5470910af604284496671e /activerecord/test/schema
parentca71bb8c99cb78fde6794cd2134b4b6147aa4426 (diff)
downloadrails-0803d7a93b4a67340719eedddcc1746414fc2405.tar.gz
rails-0803d7a93b4a67340719eedddcc1746414fc2405.tar.bz2
rails-0803d7a93b4a67340719eedddcc1746414fc2405.zip
arel columns can be used for grouping so that "weird" column names are usable
Diffstat (limited to 'activerecord/test/schema')
-rw-r--r--activerecord/test/schema/schema.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activerecord/test/schema/schema.rb b/activerecord/test/schema/schema.rb
index eec06754a5..35778d008a 100644
--- a/activerecord/test/schema/schema.rb
+++ b/activerecord/test/schema/schema.rb
@@ -770,6 +770,7 @@ ActiveRecord::Schema.define do
end
create_table :weirds, :force => true do |t|
t.string 'a$b'
+ t.string 'from'
end
except 'SQLite' do