1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2025-04-04 05:33:22 -04:00
BikeShed-1/app/models/bike_model.rb
Jason Denney 47f616b7b0 Moving bike model to the bikes table
Leaving the bike_models table and bikes.bike_model_id column as a backup.
2013-09-02 17:26:07 -04:00

18 lines
238 B
Ruby

class BikeModel < ActiveRecord::Base
attr_accessible :model, :bike_brand_id
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