1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2025-04-04 05:33:22 -04:00
BikeShed-1/app/models/bike_condition.rb
2012-12-09 14:27:07 -05:00

10 lines
131 B
Ruby

class BikeCondition < ActiveRecord::Base
attr_accessible :condition
belongs_to :bike
def to_s
self.condition
end
end