1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2025-02-28 16:53:23 -05:00
BikeShed-1/app/models/bike_brand.rb

19 lines
241 B
Ruby
Raw Normal View History

2012-12-08 15:00:43 -05:00
class BikeBrand < ActiveRecord::Base
2012-12-08 16:56:16 -05:00
attr_accessible :brand
2012-12-08 15:00:43 -05:00
has_many :bikes
has_many :bike_models
default_scope order('brand ASC')
2012-12-08 16:35:13 -05:00
self.per_page = 15
2012-12-08 15:00:43 -05:00
def models
self.bike_models
end
2012-12-08 16:56:16 -05:00
def to_s
self.brand
end
2012-12-08 15:00:43 -05:00
end