aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/schema/schema.rb
diff options
context:
space:
mode:
authorBodaniel Jeanes <me@bjeanes.com>2010-09-26 22:17:18 +1000
committerBodaniel Jeanes <me@bjeanes.com>2010-09-26 22:25:25 +1000
commitb689834bcf2730353d066277f43047f10abb8d30 (patch)
tree034aff3a33977cdb529ee70b0a45297b119582ca /activerecord/test/schema/schema.rb
parent14d2feeeab44d0161b3014c9e19f4e336c09c78e (diff)
downloadrails-b689834bcf2730353d066277f43047f10abb8d30.tar.gz
rails-b689834bcf2730353d066277f43047f10abb8d30.tar.bz2
rails-b689834bcf2730353d066277f43047f10abb8d30.zip
Initial nested_has_many_through support [#1152]
Diffstat (limited to 'activerecord/test/schema/schema.rb')
-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 ea62833d81..dbd5da45eb 100644
--- a/activerecord/test/schema/schema.rb
+++ b/activerecord/test/schema/schema.rb
@@ -71,6 +71,7 @@ ActiveRecord::Schema.define do
end
create_table :books, :force => true do |t|
+ t.integer :author_id
t.column :name, :string
end