mirror of
https://github.com/fspc/BikeShed-1.git
synced 2026-03-30 01:24:30 -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
|