rails--rails/activerecord/test/models/wheel.rb

6 lines
157 B
Ruby

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