aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/country.rb
blob: 0c84a40de2135234281784e8975538583b6ad7f1 (plain) (blame)
1
2
3
4
5
6
7
# frozen_string_literal: true

class Country < ActiveRecord::Base
  self.primary_key = :country_id

  has_and_belongs_to_many :treaties
end