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