f286dd6053
This additional date helps users to find the correct order if the time between end and pickup varies a lot.
5 lines
111 B
Ruby
5 lines
111 B
Ruby
class AddPickupToOrder < ActiveRecord::Migration
|
|
def change
|
|
add_column :orders, :pickup, :date
|
|
end
|
|
end
|