mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-04-04 05:33:22 -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
|