mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-09-17 23:49:03 -04:00
11 lines
148 B
Ruby
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
|