1
0
mirror of https://github.com/fspc/bike-database.git synced 2025-04-04 10:03:22 -04:00
bike-database/db/migrate/20140921224502_add_bike_type_and_will_pay_to_client.rb

7 lines
187 B
Ruby

class AddBikeTypeAndWillPayToClient < ActiveRecord::Migration
def change
add_column(:clients, :bike_type_requested, :string)
add_column(:clients, :will_pay, :boolean)
end
end