2017-07-09 13:41:28 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2010-06-27 11:17:44 -04:00
|
|
|
class Wheel < ActiveRecord::Base
|
2018-06-09 04:30:00 -04:00
|
|
|
belongs_to :wheelable, polymorphic: true, counter_cache: true, touch: :wheels_owned_at
|
2010-06-27 11:17:44 -04:00
|
|
|
end
|