diff options
author | Bodaniel Jeanes <me@bjeanes.com> | 2010-09-26 22:17:18 +1000 |
---|---|---|
committer | Bodaniel Jeanes <me@bjeanes.com> | 2010-09-26 22:25:25 +1000 |
commit | b689834bcf2730353d066277f43047f10abb8d30 (patch) | |
tree | 034aff3a33977cdb529ee70b0a45297b119582ca /activerecord/test/schema | |
parent | 14d2feeeab44d0161b3014c9e19f4e336c09c78e (diff) | |
download | rails-b689834bcf2730353d066277f43047f10abb8d30.tar.gz rails-b689834bcf2730353d066277f43047f10abb8d30.tar.bz2 rails-b689834bcf2730353d066277f43047f10abb8d30.zip |
Initial nested_has_many_through support [#1152]
Diffstat (limited to 'activerecord/test/schema')
-rw-r--r-- | activerecord/test/schema/schema.rb | 1 |
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 |