5 lines
119 B
Ruby
5 lines
119 B
Ruby
class Wheel < ApplicationRecord
|
|
belongs_to :setup
|
|
has_many :wheel_options
|
|
has_many :actions, as: :actionable
|
|
end
|