aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/subscription.rb
blob: e2108364131172ee9db6888fc08c2865a008dac6 (plain) (blame)
1
2
3
4
5
# frozen_string_literal: true
class Subscription < ActiveRecord::Base
  belongs_to :subscriber, counter_cache: :books_count
  belongs_to :book
end