add scaffold & bike form

This commit is contained in:
loos
2014-01-18 15:27:14 -06:00
parent b843e4024e
commit 71d2433334
29 changed files with 546 additions and 178 deletions
@@ -13,7 +13,6 @@ class CreateBikeTable < ActiveRecord::Migration
t.text :notes
t.text :tag_info
t.string :repaired_by
t.string :repaired_for
t.string :completion_date
t.string :price
end
@@ -0,0 +1,6 @@
class CreateBikes < ActiveRecord::Migration
def change
add_column(:bikes, :created_at, :datetime)
add_column(:bikes, :updated_at, :datetime)
end
end