mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-04-04 05:33:22 -04: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
|