mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-02-28 16:53:23 -05:00
10 lines
122 B
Ruby
10 lines
122 B
Ruby
class BikeStatus < ActiveRecord::Base
|
|
attr_accessible :status
|
|
|
|
belongs_to :bike
|
|
|
|
def to_s
|
|
self.status
|
|
end
|
|
end
|