aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/wheel.rb
blob: 8db57d181edf627513f741407ad8d363c8418f16 (plain) (blame)
1
2
3
4
5
# frozen_string_literal: true

class Wheel < ActiveRecord::Base
  belongs_to :wheelable, polymorphic: true, counter_cache: true, touch: true
end