diff options
author | Arthur Neves <arthurnn@gmail.com> | 2014-09-22 13:12:19 -0400 |
---|---|---|
committer | Arthur Neves <arthurnn@gmail.com> | 2014-09-22 13:12:19 -0400 |
commit | c36ca0547f41373fa3cd474722bc51e5446a1630 (patch) | |
tree | 4770cf391aad6a422d02dea7937ab3b10db85ea0 /activerecord/test/models | |
parent | 2a1b45af56d6c0ec39941c50ff98bf2e6d74d274 (diff) | |
download | rails-c36ca0547f41373fa3cd474722bc51e5446a1630.tar.gz rails-c36ca0547f41373fa3cd474722bc51e5446a1630.tar.bz2 rails-c36ca0547f41373fa3cd474722bc51e5446a1630.zip |
Better regression test for Fixtures with fk as a symbol
Diffstat (limited to 'activerecord/test/models')
-rw-r--r-- | activerecord/test/models/parrot.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/models/parrot.rb b/activerecord/test/models/parrot.rb index e76e83f314..8c83de573f 100644 --- a/activerecord/test/models/parrot.rb +++ b/activerecord/test/models/parrot.rb @@ -19,7 +19,7 @@ class LiveParrot < Parrot end class DeadParrot < Parrot - belongs_to :killer, :class_name => 'Pirate' + belongs_to :killer, :class_name => 'Pirate', foreign_key: :killer_id end class FunkyParrot < Parrot |