mirror of
https://github.com/fspc/bike-database.git
synced 2025-04-04 10:03:22 -04:00
7 lines
187 B
Ruby
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
|