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

5 lines
93 B
Ruby
Raw Normal View History

class Car < ActiveRecord::Base
has_many :engines
has_many :wheels, :as => :wheelable
end