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
2012-12-09 14:27:07 -05:00

10 lines
119 B
Ruby

class BikeStyle < ActiveRecord::Base
attr_accessible :style
belongs_to :bike
def to_s
self.style
end
end