diff options
author | Jon Leighton <j@jonathanleighton.com> | 2010-10-19 16:13:06 +0100 |
---|---|---|
committer | Jon Leighton <j@jonathanleighton.com> | 2010-10-19 16:13:06 +0100 |
commit | 915ea5ea826d48107e4c1953c7a32cf26727d10e (patch) | |
tree | 6d9c1284df9ac076d2b083737374f6b884f7197b /activerecord/test/schema | |
parent | 0ceb34295501a797c9e549c581ecee17f837f01c (diff) | |
download | rails-915ea5ea826d48107e4c1953c7a32cf26727d10e.tar.gz rails-915ea5ea826d48107e4c1953c7a32cf26727d10e.tar.bz2 rails-915ea5ea826d48107e4c1953c7a32cf26727d10e.zip |
Support the :primary_key option on a through reflection in a nested through association
Diffstat (limited to 'activerecord/test/schema')
-rw-r--r-- | activerecord/test/schema/schema.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/activerecord/test/schema/schema.rb b/activerecord/test/schema/schema.rb index de3baaf4ab..c77651a782 100644 --- a/activerecord/test/schema/schema.rb +++ b/activerecord/test/schema/schema.rb @@ -44,6 +44,8 @@ ActiveRecord::Schema.define do t.string :name, :null => false t.integer :author_address_id t.integer :author_address_extra_id + t.string :organization_id + t.string :owned_essay_id end create_table :author_addresses, :force => true do |t| |