aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/treaty.rb
blob: a6c227c84e8f94d61d993149f00ed4ff60b2cdf3 (plain) (blame)
1
2
3
4
5
6
# frozen_string_literal: true
class Treaty < ActiveRecord::Base
  self.primary_key = :treaty_id

  has_and_belongs_to_many :countries
end