aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/country.rb
blob: 7db9a4e731281ce4de18619f2d96fa4882e7282f (plain) (blame)
1
2
3
4
5
6
7
class Country < ActiveRecord::Base

  self.primary_key = :country_id

  has_and_belongs_to_many :treaties

end