You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
372 B
10 lines
372 B
class AddFieldsToClient < ActiveRecord::Migration
|
|
def change
|
|
add_column(:clients, :notes, :text)
|
|
add_column(:clients, :bike_fixed, :boolean)
|
|
add_column(:clients, :number_of_calls, :integer)
|
|
add_column(:clients, :application_voided, :boolean)
|
|
add_column(:clients, :pickup_date, :date)
|
|
add_column(:clients, :volunteer_at_pickup, :string)
|
|
end
|
|
end
|
|
|