1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2025-02-28 16:53:23 -05:00

Adding some Bike models

This commit is contained in:
Jason Denney 2012-12-06 17:13:39 -05:00
parent f7d36328a5
commit 575651a325
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,5 @@
class BikeCondition < ActiveRecord::Base
attr_accessible :condition
belongs_to :bike
end

View File

@ -0,0 +1,5 @@
class BikeStatus < ActiveRecord::Base
attr_accessible :status
belongs_to :bike
end