aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/parrot.rb
diff options
context:
space:
mode:
authorArthur Neves <arthurnn@gmail.com>2014-09-22 13:12:19 -0400
committerArthur Neves <arthurnn@gmail.com>2014-09-22 13:12:19 -0400
commitc36ca0547f41373fa3cd474722bc51e5446a1630 (patch)
tree4770cf391aad6a422d02dea7937ab3b10db85ea0 /activerecord/test/models/parrot.rb
parent2a1b45af56d6c0ec39941c50ff98bf2e6d74d274 (diff)
downloadrails-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/parrot.rb')
-rw-r--r--activerecord/test/models/parrot.rb2
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