Louis | Remove failing autogenerated tests, fix bug where bike type wasn't saving

This commit is contained in:
Loos
2014-09-17 09:12:16 -04:00
parent d3403e18cd
commit 4d49cf829f
18 changed files with 47 additions and 137 deletions
@@ -6,7 +6,6 @@ class CreateBikeTable < ActiveRecord::Migration
t.string :model
t.string :type
t.string :color
t.string :frame_size
t.boolean :freecyclery
t.boolean :sale
t.string :serial_number
@@ -0,0 +1,5 @@
class AddBikeToClient < ActiveRecord::Migration
def change
add_reference :clients, :bike, index: true
end
end