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
2012-12-08 15:00:43 -05:00

11 lines
148 B
Ruby

class BikeModel < ActiveRecord::Base
attr_accessible :name
has_many :bikes
belongs_to :bike_brand
def brand
self.bike_brand
end
end