Louis | Adds bike type requested and will pay options to clients

This commit is contained in:
Loos
2014-09-21 17:50:16 -05:00
parent b8fc1eff42
commit 36e7c1624f
3 changed files with 36 additions and 3 deletions
@@ -0,0 +1,6 @@
class AddBikeTypeAndWillPayToClient < ActiveRecord::Migration
def change
add_column(:clients, :bike_type_requested, :string)
add_column(:clients, :will_pay, :boolean)
end
end