mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-02-28 16:53:23 -05:00
19 lines
256 B
Ruby
19 lines
256 B
Ruby
class BikeModel < ActiveRecord::Base
|
|
attr_accessible :model, :bike_brand_id
|
|
|
|
has_many :bikes
|
|
belongs_to :bike_brand
|
|
|
|
default_scope order('model ASC')
|
|
|
|
self.per_page = 15
|
|
|
|
def brand
|
|
self.bike_brand
|
|
end
|
|
|
|
def to_s
|
|
self.model
|
|
end
|
|
end
|