mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-11-02 16:55:34 -05:00
10 lines
131 B
Ruby
10 lines
131 B
Ruby
class BikeCondition < ActiveRecord::Base
|
|
attr_accessible :condition
|
|
|
|
belongs_to :bike
|
|
|
|
def to_s
|
|
self.condition
|
|
end
|
|
end
|