aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/country.rb
blob: 5c1c6dc4925e6571b64ce55092a3141fa69ba776 (plain) (blame)
1
2
3
4
5
6
# frozen_string_literal: true
class Country < ActiveRecord::Base
  self.primary_key = :country_id

  has_and_belongs_to_many :treaties
end