aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/country.rb
diff options
context:
space:
mode:
authorNeeraj Singh <neerajdotname@gmail.com>2010-07-19 15:32:00 -0400
committerAaron Patterson <aaron.patterson@gmail.com>2010-07-20 16:45:42 -0700
commitf576d7cf848717384799a9e9669b253ccc94deb5 (patch)
tree4cf0e9c980e133c713374477e17411236f24aaf6 /activerecord/test/models/country.rb
parenta63566dda8246bd57e80032a1213532d0dc2ae0b (diff)
downloadrails-f576d7cf848717384799a9e9669b253ccc94deb5.tar.gz
rails-f576d7cf848717384799a9e9669b253ccc94deb5.tar.bz2
rails-f576d7cf848717384799a9e9669b253ccc94deb5.zip
Ensure that primary_keys of HABTM records is not double quoted
[#5152 state:reslved]
Diffstat (limited to 'activerecord/test/models/country.rb')
-rw-r--r--activerecord/test/models/country.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/activerecord/test/models/country.rb b/activerecord/test/models/country.rb
new file mode 100644
index 0000000000..15e3a1de0b
--- /dev/null
+++ b/activerecord/test/models/country.rb
@@ -0,0 +1,7 @@
+class Country < ActiveRecord::Base
+
+ set_primary_key :country_id
+
+ has_and_belongs_to_many :treaties
+
+end