aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/engine.rb
blob: 396a52b3b9852addb293d507288fe6b4d011718a (plain) (blame)
1
2
3
4
5
# frozen_string_literal: true

class Engine < ActiveRecord::Base
  belongs_to :my_car, class_name: "Car", foreign_key: "car_id",  counter_cache: :engines_count
end