foodsoft/db/migrate/20160217152621_add_pickup_to_order.rb
Patrick Gansterer f286dd6053 Add pickup date
This additional date helps users to find the correct order if the time
between end and pickup varies a lot.
2016-04-29 15:28:05 +02:00

5 lines
111 B
Ruby

class AddPickupToOrder < ActiveRecord::Migration
def change
add_column :orders, :pickup, :date
end
end