1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2025-02-28 16:53:23 -05:00
BikeShed-1/app/models/bike_style.rb

10 lines
119 B
Ruby
Raw Normal View History

2012-12-08 16:36:29 -05:00
class BikeStyle < ActiveRecord::Base
attr_accessible :style
belongs_to :bike
2012-12-09 14:27:07 -05:00
def to_s
self.style
end
2012-12-08 16:36:29 -05:00
end