1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2025-03-01 01:03:23 -05:00
BikeShed-1/app/models/bike_status.rb

10 lines
122 B
Ruby
Raw Normal View History

2012-12-06 17:13:39 -05:00
class BikeStatus < ActiveRecord::Base
attr_accessible :status
belongs_to :bike
2012-12-09 14:27:07 -05:00
def to_s
self.status
end
2012-12-06 17:13:39 -05:00
end