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
+5
View File
@@ -0,0 +1,5 @@
class BikeCondition < ActiveRecord::Base
attr_accessible :condition
belongs_to :bike
end
+5
View File
@@ -0,0 +1,5 @@
class BikeStatus < ActiveRecord::Base
attr_accessible :status
belongs_to :bike
end